-- -- PostgreSQL database dump -- \restrict UdqJnGUzvOPK1BKtyyhwJcdSsUoZoNOfOjKzsaZYWDZRZd2A0KZXksgF2fJd0mN -- Dumped from database version 15.14 (Debian 15.14-1.pgdg13+1) -- Dumped by pg_dump version 15.14 (Debian 15.14-1.pgdg13+1) SET statement_timeout = 0; SET lock_timeout = 0; SET idle_in_transaction_session_timeout = 0; SET client_encoding = 'UTF8'; SET standard_conforming_strings = on; SELECT pg_catalog.set_config('search_path', '', false); SET check_function_bodies = false; SET xmloption = content; SET client_min_messages = warning; SET row_security = off; -- -- Name: pg_trgm; Type: EXTENSION; Schema: -; Owner: - -- CREATE EXTENSION IF NOT EXISTS pg_trgm WITH SCHEMA public; -- -- Name: EXTENSION pg_trgm; Type: COMMENT; Schema: -; Owner: -- COMMENT ON EXTENSION pg_trgm IS 'text similarity measurement and index searching based on trigrams'; -- -- Name: uuid-ossp; Type: EXTENSION; Schema: -; Owner: - -- CREATE EXTENSION IF NOT EXISTS "uuid-ossp" WITH SCHEMA public; -- -- Name: EXTENSION "uuid-ossp"; Type: COMMENT; Schema: -; Owner: -- COMMENT ON EXTENSION "uuid-ossp" IS 'generate universally unique identifiers (UUIDs)'; -- -- Name: log_master_asset_event(); Type: FUNCTION; Schema: public; Owner: ferrero_user -- CREATE FUNCTION public.log_master_asset_event() RETURNS trigger LANGUAGE plpgsql AS $$ BEGIN IF (TG_OP = 'INSERT') THEN INSERT INTO asset_events (tracking_id, event_type, event_data) VALUES (NEW.tracking_id, 'master_asset_created', row_to_json(NEW)::jsonb); RETURN NEW; ELSIF (TG_OP = 'UPDATE') THEN INSERT INTO asset_events (tracking_id, event_type, event_data) VALUES (NEW.tracking_id, 'master_asset_updated', jsonb_build_object('old', row_to_json(OLD)::jsonb, 'new', row_to_json(NEW)::jsonb)); RETURN NEW; ELSIF (TG_OP = 'DELETE') THEN INSERT INTO asset_events (tracking_id, event_type, event_data) VALUES (OLD.tracking_id, 'master_asset_deleted', row_to_json(OLD)::jsonb); RETURN OLD; END IF; END; $$; ALTER FUNCTION public.log_master_asset_event() OWNER TO ferrero_user; -- -- Name: update_updated_at_column(); Type: FUNCTION; Schema: public; Owner: ferrero_user -- CREATE FUNCTION public.update_updated_at_column() RETURNS trigger LANGUAGE plpgsql AS $$ BEGIN NEW.updated_at = CURRENT_TIMESTAMP; RETURN NEW; END; $$; ALTER FUNCTION public.update_updated_at_column() OWNER TO ferrero_user; SET default_tablespace = ''; SET default_table_access_method = heap; -- -- Name: asset_events; Type: TABLE; Schema: public; Owner: ferrero_user -- CREATE TABLE public.asset_events ( id integer NOT NULL, tracking_id character varying(6), event_type character varying(100) NOT NULL, event_data jsonb, event_timestamp timestamp without time zone DEFAULT CURRENT_TIMESTAMP, created_by character varying(255) ); ALTER TABLE public.asset_events OWNER TO ferrero_user; -- -- Name: asset_events_id_seq; Type: SEQUENCE; Schema: public; Owner: ferrero_user -- CREATE SEQUENCE public.asset_events_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.asset_events_id_seq OWNER TO ferrero_user; -- -- Name: asset_events_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ferrero_user -- ALTER SEQUENCE public.asset_events_id_seq OWNED BY public.asset_events.id; -- -- Name: campaign_status; Type: TABLE; Schema: public; Owner: ferrero_user -- CREATE TABLE public.campaign_status ( id integer NOT NULL, campaign_id character varying(255) NOT NULL, campaign_number character varying(50) NOT NULL, campaign_name character varying(500) NOT NULL, live_campaign character varying(3) NOT NULL, status character varying(10) NOT NULL, webhook_sent boolean DEFAULT false, webhook_sent_at timestamp without time zone, created_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP, updated_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP ); ALTER TABLE public.campaign_status OWNER TO ferrero_user; -- -- Name: campaign_status_id_seq; Type: SEQUENCE; Schema: public; Owner: ferrero_user -- CREATE SEQUENCE public.campaign_status_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.campaign_status_id_seq OWNER TO ferrero_user; -- -- Name: campaign_status_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ferrero_user -- ALTER SEQUENCE public.campaign_status_id_seq OWNED BY public.campaign_status.id; -- -- Name: creativex_scores; Type: TABLE; Schema: public; Owner: ferrero_user -- CREATE TABLE public.creativex_scores ( id integer NOT NULL, filename character varying(500) NOT NULL, box_file_id character varying(255), creativex_id character varying(255), creativex_url text, quality_score character varying(50), full_extraction_data jsonb, extracted_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP, status character varying(50) DEFAULT 'active'::character varying, created_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP, tracking_id character varying(6) ); ALTER TABLE public.creativex_scores OWNER TO ferrero_user; -- -- Name: creativex_scores_id_seq; Type: SEQUENCE; Schema: public; Owner: ferrero_user -- CREATE SEQUENCE public.creativex_scores_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.creativex_scores_id_seq OWNER TO ferrero_user; -- -- Name: creativex_scores_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ferrero_user -- ALTER SEQUENCE public.creativex_scores_id_seq OWNED BY public.creativex_scores.id; -- -- Name: derivative_assets; Type: TABLE; Schema: public; Owner: ferrero_user -- CREATE TABLE public.derivative_assets ( id integer NOT NULL, tracking_id character varying(6) NOT NULL, master_asset_id integer, derivative_filename character varying(500), file_extension character varying(20), dam_asset_id character varying(255), upload_status character varying(50) DEFAULT 'pending'::character varying, upload_error text, uploaded_by character varying(255), uploaded_at timestamp without time zone, status character varying(50) DEFAULT 'active'::character varying, created_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP, updated_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP ); ALTER TABLE public.derivative_assets OWNER TO ferrero_user; -- -- Name: derivative_assets_id_seq; Type: SEQUENCE; Schema: public; Owner: ferrero_user -- CREATE SEQUENCE public.derivative_assets_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.derivative_assets_id_seq OWNER TO ferrero_user; -- -- Name: derivative_assets_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ferrero_user -- ALTER SEQUENCE public.derivative_assets_id_seq OWNED BY public.derivative_assets.id; -- -- Name: master_assets; Type: TABLE; Schema: public; Owner: ferrero_user -- CREATE TABLE public.master_assets ( id integer NOT NULL, tracking_id character varying(6) NOT NULL, opentext_id character varying(255) NOT NULL, original_filename character varying(500) NOT NULL, file_extension character varying(20), file_size_bytes bigint, mime_type character varying(100), brand_code character varying(5), brand_name character varying(255), country_code character varying(2), country_name character varying(255), language_code character varying(3), language_name character varying(100), subject_title character varying(255), asset_type character varying(3), asset_type_name character varying(255), duration_seconds integer, aspect_ratio character varying(10), width_px integer, height_px integer, global_master_campaign_id character varying(50), global_master_folder_id character varying(255), local_campaign_id character varying(50), upload_directory character varying(1000), description text, full_metadata jsonb, tags text[], categories text[], status character varying(50) DEFAULT 'active'::character varying, is_deleted boolean DEFAULT false, deleted_at timestamp without time zone, ingested_by character varying(255), ingested_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP, created_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP, updated_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP ); ALTER TABLE public.master_assets OWNER TO ferrero_user; -- -- Name: master_assets_id_seq; Type: SEQUENCE; Schema: public; Owner: ferrero_user -- CREATE SEQUENCE public.master_assets_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.master_assets_id_seq OWNER TO ferrero_user; -- -- Name: master_assets_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ferrero_user -- ALTER SEQUENCE public.master_assets_id_seq OWNED BY public.master_assets.id; -- -- Name: workflow_state; Type: TABLE; Schema: public; Owner: ferrero_user -- CREATE TABLE public.workflow_state ( id integer NOT NULL, workflow_name character varying(100) NOT NULL, campaign_id character varying(255), last_run_at timestamp without time zone, last_status character varying(50), error_message text, created_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP, updated_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP ); ALTER TABLE public.workflow_state OWNER TO ferrero_user; -- -- Name: workflow_state_id_seq; Type: SEQUENCE; Schema: public; Owner: ferrero_user -- CREATE SEQUENCE public.workflow_state_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.workflow_state_id_seq OWNER TO ferrero_user; -- -- Name: workflow_state_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: ferrero_user -- ALTER SEQUENCE public.workflow_state_id_seq OWNED BY public.workflow_state.id; -- -- Name: asset_events id; Type: DEFAULT; Schema: public; Owner: ferrero_user -- ALTER TABLE ONLY public.asset_events ALTER COLUMN id SET DEFAULT nextval('public.asset_events_id_seq'::regclass); -- -- Name: campaign_status id; Type: DEFAULT; Schema: public; Owner: ferrero_user -- ALTER TABLE ONLY public.campaign_status ALTER COLUMN id SET DEFAULT nextval('public.campaign_status_id_seq'::regclass); -- -- Name: creativex_scores id; Type: DEFAULT; Schema: public; Owner: ferrero_user -- ALTER TABLE ONLY public.creativex_scores ALTER COLUMN id SET DEFAULT nextval('public.creativex_scores_id_seq'::regclass); -- -- Name: derivative_assets id; Type: DEFAULT; Schema: public; Owner: ferrero_user -- ALTER TABLE ONLY public.derivative_assets ALTER COLUMN id SET DEFAULT nextval('public.derivative_assets_id_seq'::regclass); -- -- Name: master_assets id; Type: DEFAULT; Schema: public; Owner: ferrero_user -- ALTER TABLE ONLY public.master_assets ALTER COLUMN id SET DEFAULT nextval('public.master_assets_id_seq'::regclass); -- -- Name: workflow_state id; Type: DEFAULT; Schema: public; Owner: ferrero_user -- ALTER TABLE ONLY public.workflow_state ALTER COLUMN id SET DEFAULT nextval('public.workflow_state_id_seq'::regclass); -- -- Data for Name: asset_events; Type: TABLE DATA; Schema: public; Owner: ferrero_user -- COPY public.asset_events (id, tracking_id, event_type, event_data, event_timestamp, created_by) FROM stdin; 1 bvSGyd master_asset_created {"id": 1, "tags": null, "status": "active", "width_px": null, "height_px": null, "mime_type": "image/jpeg", "asset_type": null, "brand_code": null, "brand_name": null, "categories": null, "created_at": "2025-11-05T22:14:25.708002", "deleted_at": null, "is_deleted": false, "updated_at": "2025-11-05T22:14:25.708002", "description": "Box File ID: 2037680070278\\nBox URL: https://app.box.com/file/2037680070278\\nDAM Asset ID: 747110b96dede761a445a3bf0c90f13bb38024fa", "ingested_at": "2025-11-05T22:14:25.708002", "ingested_by": null, "opentext_id": "747110b96dede761a445a3bf0c90f13bb38024fa", "tracking_id": "bvSGyd", "aspect_ratio": null, "country_code": null, "country_name": null, "full_metadata": {"name": "nutella pbased.jpg", "links": {"links": [], "source_id": "747110b96dede761a445a3bf0c90f13bb38024fa"}, "locked": false, "deleted": false, "expired": false, "version": 1, "asset_id": "747110b96dede761a445a3bf0c90f13bb38024fa", "metadata": {"id": "ECOMMERCE", "name": "Marketing Asset", "type": "com.artesia.metadata.MetadataModel", "legacy_id": 116, "metadata_element_list": [{"id": "FERRERO.CATEGORY.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200054, "metadata_element_list": []}, {"id": "FERRER.CATEGORY.ASSET_INFO", "name": "Asset Info", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200022, "metadata_element_list": [{"id": "FERRERO.FIELD.FISCAL YEAR", "name": "Release Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2024/2025"}, "display_value": "2024/2025", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Release Fiscal Year", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_DOMAIN_FISCAL_YEAR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "FISCAL__YEAR", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "name": "Main Languages", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1210, "metadata_element_list": [{"id": "MAIN_LANGUAGES", "name": "MAIN LANGUAGES", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "MAIN LANGUAGES", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MAIN LAGUAGES_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MAIN_LANGUAGE_TABLE", "column_name": "MAIN_LANGUAGE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "parent_table_name": "Main Languages", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.ASSET DESCRIPTION", "name": "Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Description", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "DESCR", "data_length": 249, "description": "Descriptive information", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.FLAVOUR", "name": "Flavour", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Flavour", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.FLAVOUR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FLAVOUR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.SIZE", "name": "Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Size", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.SIZE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SIZE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1241, "metadata_element_list": [{"id": "FERRERO.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Compliance", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ASSETCOMPLIANCE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_COMPLIANCE", "column_name": "ASSET_COMPLIANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "parent_table_name": "Asset Compliance", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.TAG DETAILS", "name": "Tag Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 118, "metadata_element_list": [{"id": "ARTESIA.FIELD.TAG", "name": "Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "food", "field_value": {"type": "string", "value": "food"}, "display_value": "food", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Tag", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "food", "field_value": {"type": "string", "value": "food"}, "display_value": "food", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "fruit preserve", "field_value": {"type": "string", "value": "fruit preserve"}, "display_value": "fruit preserve", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "preserved food", "field_value": {"type": "string", "value": "preserved food"}, "display_value": "preserved food", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "condiment", "field_value": {"type": "string", "value": "condiment"}, "display_value": "condiment", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "mason jar", "field_value": {"type": "string", "value": "mason jar"}, "display_value": "mason jar", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "canning", "field_value": {"type": "string", "value": "canning"}, "display_value": "canning", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "food storage containers", "field_value": {"type": "string", "value": "food storage containers"}, "display_value": "food storage containers", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "sauces", "field_value": {"type": "string", "value": "sauces"}, "display_value": "sauces", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "lekvar", "field_value": {"type": "string", "value": "lekvar"}, "display_value": "lekvar", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "pickling", "field_value": {"type": "string", "value": "pickling"}, "display_value": "pickling", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "food storage", "field_value": {"type": "string", "value": "food storage"}, "display_value": "food storage", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "healthy", "field_value": {"type": "string", "value": "healthy"}, "display_value": "healthy", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "jam", "field_value": {"type": "string", "value": "jam"}, "display_value": "jam", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "ingredient", "field_value": {"type": "string", "value": "ingredient"}, "display_value": "ingredient", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "sauce", "field_value": {"type": "string", "value": "sauce"}, "display_value": "sauce", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "seasoning", "field_value": {"type": "string", "value": "seasoning"}, "display_value": "seasoning", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "bottle", "field_value": {"type": "string", "value": "bottle"}, "display_value": "bottle", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "honey", "field_value": {"type": "string", "value": "honey"}, "display_value": "honey", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.TAGS", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "OTMM_TAGS", "column_name": "TAG", "data_length": 80, "description": "Tag", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG CONFIDENCE", "name": "Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 89.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Confidence", "values": [{"value": {"type": "decimal", "value": 89.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 89.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 89.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 86.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 73.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 73.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 70.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 70.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 66.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 64.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 60.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 58.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 57.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 57.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 56.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 52.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 52.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 5.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Confidence", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG TYPE", "name": "Tag Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Tag Type", "values": [{"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "TAG_TYPE", "data_length": 10, "description": "Tag Type", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED BY", "name": "Associated By", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Associated By", "values": [{"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_BY", "data_length": 10, "description": "Associated By", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED DATE", "name": "Associated Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.607+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Associated Date", "values": [{"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.607+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.607+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.607+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.607+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.61+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.61+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.61+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.61+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.61+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.61+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.61+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.61+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.61+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.61+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.61+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.61+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.61+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.61+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_DATE", "data_length": 10, "description": "Associated Date", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.STATE", "name": "Global/Local", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "GLOBAL"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO_NOTNULL", "facetable": true, "searchable": true, "table_name": "FERRERO_IC_ASSET_DETAILS", "column_name": "ASSET_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.ASPECT RATIO", "name": "Aspect Ratio (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio (Marketing)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASPECT_RATIO", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASPECT_RATIO", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "name": "Tag (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1222, "metadata_element_list": [{"id": "MARKETING_TAG", "name": "Marketing Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Marketing Tag", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.DOMAIN.TAG", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TAG_MARKET", "column_name": "TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "parent_table_name": "Tag (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.TAGS", "name": "Auto-Generated Tags", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Auto-Generated Tags", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "AUTO_GENERATED_TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CERTIFIER", "name": "Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approver", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.MARKETING.FIELD.APPROVAL DATE", "name": "Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.CERTIFIER COMMENT", "name": "Approver Comment", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approver Comment", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "CERTIFIER_COMMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.LEGAL CERTIFER", "name": "Legal Certifier", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "User, Legal IA&CC (Local Legal IA&CC, active)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal Certifier", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "LEGAL_CERTIFIER_MARKETING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.LEGAL APPROVAL DATE", "name": "Legal Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-11-05T00:00:00+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.LEGAL COMMENT", "name": "Legal Comment", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": ", "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal Comment", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_COMMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CERTIFIER", "name": "IA&CC Certifier", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "User, Legal IA&CC (Local Legal IA&CC, active)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Certifier", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CC APPROVAL DATE", "name": "IA&CC Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-11-05T00:00:00+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CC COMMENT", "name": "IA&CC Comment", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "c8c5e34bc384c3dcc5fe06b91b6e0cfec2786f77=#SPLIT#43009b2ba8204f56f4b38a31a53aea735ade049f="}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Comment", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_COMMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "name": "Extended Approval", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1230, "metadata_element_list": [{"id": "FERRERO.FIELD.EXTENDED.APPROVAL", "name": "Extended Approval required by:", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended Approval required by:", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COMMENTS", "name": "Comment", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comment", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "COMMENTS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.DATE", "name": "Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USERS", "name": "User ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "User ID", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "USERS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXTENDED.JOBID", "name": "Extended JobID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended JobID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.MIGRATION.INDEX", "name": "Migration Index", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Migration Index", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MIGRATION.INDEX", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MIGRATION_INDEX", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "FERRERO_MARKET_MARKETING_CREATOR", "name": "Marketing Creator", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Marketing Creator", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.CREATOR", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MARKETING_CREATOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "ARTESIA.FIELD.IS LATEST VERSION", "name": "Is Latest Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Y"}, "display_value": "Yes", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Is Latest Version", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.YES_NO", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "IS_LATEST_VERSION", "data_length": 1, "description": "Is this the latest version? (Y/N)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET VERSION", "name": "Asset Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 1}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Version", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "INTEGER", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "VERSION", "data_length": 12, "description": "Version number of asset", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET_ID", "name": "Asset ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "747110b96dede761a445a3bf0c90f13bb38024fa"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset ID", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "LOGICAL_UOI_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.ECOMMERCE STATUS", "name": "Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "TO BE APPROVED"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Status", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "ASSET_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CREATOR", "name": "Uploaded by", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Uploaded by", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_USER_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.FIELD.CREATION DATE", "name": "Upload Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-10-31T16:39:58.037+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Upload Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_DT", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.ASSET NAME", "name": "Asset Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "nutella pbased.jpg"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Name", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "description": "Original name of master object", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.CONTENT TYPE", "name": "Content Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "BITMAP"}, "display_value": "Image", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Type", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.CONTENT_TYPES", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "CONTENT_TYPE", "data_length": 8, "description": "Content Type", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.MIME TYPE", "name": "File Extension", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "image/jpeg"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Extension", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_MIME_TYPE", "data_length": 80, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.FILE.SIZE", "name": "File Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "long", "value": 5000}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Size", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "LONG", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_SIZE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP RESOLUTION", "name": "Bitmap Resolution", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 72}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Resolution", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_RESOLUTION", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP WIDTH", "name": "Bitmap Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 203}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Width", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_WIDTH", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP HEIGHT", "name": "Bitmap Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 249}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Height", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_HEIGHT", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.VIDEO.BIT_RATE", "name": "Bitrate", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitrate", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "BIT_RATE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.EMBEDDED.FIELD.DURATION", "name": "Duration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Duration", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "DURATION_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.ASPECT RATIO", "name": "Aspect Ratio", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "ASPECT_RATIO", "data_length": 30, "displayable": false, "instructions": "ASPECT_RATIO", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME HEIGHT", "name": "Frame Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Height", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_HEIGHT", "data_length": 12, "displayable": true, "instructions": "FRAME_HEIGHT", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME WIDTH", "name": "Frame Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Width", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_WIDTH", "data_length": 12, "displayable": true, "instructions": "FRAME_WIDTH", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.ASPECT.RATIO.POC", "name": "Aspect Ratio(POC)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "4:5"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio(POC)", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASPECT_RATIO_TABLE", "column_name": "ASPECT_RATIO", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "PRODUCT.DETAILS", "name": "Product Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200029, "metadata_element_list": [{"id": "FERRERO.TABLE.EANCODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1208, "metadata_element_list": [{"id": "EAN_CODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "EAN CODE/ 77 CODE", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "EAN.CODE", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "EAN_CODE", "column_name": "EAN_CODE_DESCRIPTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "COUNTRY", "name": "COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "EAN_CODE", "column_name": "COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.SUB BRAND", "name": "Sub-Brands", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Sub-Brands", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.SUBBRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "SUB_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT WEIGHT", "name": "Product Weight", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Weight", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_WEIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.CONSUMER UNIT PACKAGING", "name": "Consumer Unit Packaging", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Consumer Unit Packaging", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PACK", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "CONSUMER_UNIT_PACKAGING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.4 DIGIT CODE", "name": "4 Digit Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "4 Digit Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "DIGITCODE", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERREO.ECOM.RETAILER_SPECIFIC_FIELD", "name": "Retailer Specific", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Retailer Specific", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "RETAILER_SPECIFIC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "cascading_group_id": "FERRERO.RETAILER.SPECIFIC", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY END PERIOD", "name": "Asset validity end period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity end period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_ENDING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT VIEW", "name": "Product View", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product View", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT VIEW", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_VIEW", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT ANGLE", "name": "Product Angle", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Angle", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT.ANGLE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_ANGLE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT STATE", "name": "Product State", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product State", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT STATE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PROMOTION ID", "name": "Promo ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Promo ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROMO_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200048, "metadata_element_list": []}, {"id": "FERRERO.FIELD.CREATIX", "name": "CreativeX", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200059, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.CREATIVEX", "name": "Confidence", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1245, "metadata_element_list": [{"id": "FERRERO.TAB.FIELD.CREATIVEX", "name": "Platform > Rating (%)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Platform > Rating (%)", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_CREATIVEX", "column_name": "CREATIVEX_NEW", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CREATIVEX", "parent_table_name": "Confidence", "cascading_group_id": "FERRERO.CREATIVEX.CHAR", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.CREATIVEX LINK", "name": "CreativeX Hyperlink", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "CreativeX Hyperlink", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_CREATIVEX", "column_name": "CREATIVE_LINK", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.IP_RIGHTS", "name": "IP Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200046, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.IPRIGHT", "name": "IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "IP Rights", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.IPRIGHTS", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IP_RIGHTS", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.BUYOUT", "name": "Touchpoint Scope", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Touchpoint Scope", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.TOTAL_BUYOUT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TOTAL_BUYOUT", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.FERRERO PROPERTY", "name": "Ferrero Property", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Ferrero Property", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.FERRERO_PROPERTY", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FERRERO_PROPERTY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200035, "metadata_element_list": []}, {"id": "FERRERO.MARKET.VID_STAT_RIGHT", "name": "Video & Static Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200047, "metadata_element_list": [{"id": "FERRERO.MARKET.VID_N_STAT", "name": "Video and Static Right", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Video and Static Right", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VID_AND_STAT_RIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.VID_STAT_TYPE", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1221, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.TYPE_VID", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Video & Static Right", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TYPE_VID_STAT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_MARKET_TYPE_VID_STAT", "column_name": "TYPE_OF_VIDEO_STATIC_RIGHT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.VID_STAT_TYPE", "parent_table_name": "Type of Video & Static Right", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKET.PROD_COMPANY", "name": "Production House", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Production House", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.PRODUCT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200050, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.LICENSIN", "name": "Licensing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Licensing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSING", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "cascading_group_id": "FERRERO.MARKET.CG.LICENSE", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.SPOT_DETAILS", "name": "Spot Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200049, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.SPOT_VERSION", "name": "Spot Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Version", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_VERSION", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_VERSION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.SPOT_TYPE", "name": "Spot Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_TYPE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.DIRECTOR_NAME", "name": "Director Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Director Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "DIRECTOR_NAME", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VIDEO_POST_PROD_COMPANY", "name": "Video Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VID_POST_PROD_CONTACT", "name": "Video Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_COMPANY", "name": "Audio Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_CONTACT", "name": "Audio Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.BROADCASTER.CODE", "name": "Broadcaster Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Broadcaster Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BROADCASTER_CODE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.TECHNICAL_VALIDATION", "name": "Technical Validation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Technical Validation", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TECHNICAL_VALIDATION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS", "name": "Media Analysis", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1002, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES COUNT", "name": "Faces Count", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Faces Count", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACECOUNT", "column_name": "COUNT", "data_length": 10, "description": "Faces Count", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "name": "Face Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 106, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME", "name": "Recognized Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME", "data_length": 2000, "description": "Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME CONFIDENCE", "name": "Recognized Name Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME_CONFIDENCE", "data_length": 10, "description": "Name Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE", "name": "Person Age", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE", "data_length": 10, "description": "Person Age", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE CONFIDENCE", "name": "Person Age Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Person Age Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_CONFIDENCE", "data_length": 10, "description": "Person Age Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER", "name": "Gender", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Gender", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.GENDER", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER", "data_length": 40, "description": "Gender", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER CONFIDENCE", "name": "Gender Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Gender Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER_CONFIDENCE", "data_length": 10, "description": "Gender Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.FACE COORDS", "name": "Face Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "FACE_COORDS", "data_length": 200, "description": "Face Coordinates like postion, height,width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE GROUP", "name": "Person Age Group", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age Group", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.AGE GROUP", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_GROUP", "data_length": 10, "description": "Person Age Group", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.ISBW", "name": "Is Black and White", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "false"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Is Black and White", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "ISBW", "data_length": 10, "description": "Is Black and White", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "name": "Image Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 110, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.IMAGE TYPE", "name": "Analysis Image Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "clip_art"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Analysis Image Type", "values": [{"value": {"type": "string", "value": "clip_art"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_IMAGE_TYPE", "column_name": "TYPE", "data_length": 100, "description": "Image Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "parent_table_name": "Image Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.DATE", "name": "Date: Media Analysis", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date: Media Analysis", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MEDIA_ANALYSIS_DATE", "data_length": 25, "description": "Date Media Analysis was done on the asset.", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false}]}, {"id": "HYBRIS.PRODUCT.INFO", "name": "PIM Item Reference", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200027, "metadata_element_list": [{"id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "name": "Hybris Item Reference", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1206, "metadata_element_list": [{"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ID", "name": "Hybris Item ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ID", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT TAG NAME", "name": "Hybris Assignment Label", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Assignment Label", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_TAG_NAME", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ATTRIBUTE NAME", "name": "Hybris Attribute Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Attribute Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ATTRIBUTE_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT CATALOG NAME", "name": "Hybris Catalog Mnemonic", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Catalog Mnemonic", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_CATALOG_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT PK", "name": "Hybris Item PK", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item PK", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_PK", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.SYSTEM ID", "name": "Hybris System ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris System ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "SYSTEM_ID", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.ASSIGNED", "name": "Assigned", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Assigned", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "ASSIGNED", "column_name": "ASSIGNED", "data_length": 38, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PIM TYPE", "name": "PIM Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "PIM Type", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_PIM_TYPE", "column_name": "PIM_TYPE", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS VIDEO", "name": "Media Analysis Video", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1003, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "name": "Labels", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 113, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.ID", "name": "Label Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "ID", "data_length": 40, "description": "Label Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.NAME", "name": "Label Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "NAME", "data_length": 40, "description": "Label Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.APPEARANCES", "name": "Label Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "APPEARANCES", "data_length": 0, "description": "Label Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "name": "Sentiments", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 114, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.ID", "name": "Sentiment Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "ID", "data_length": 40, "description": "Sentiment Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.NAME", "name": "Sentiment Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "NAME", "data_length": 40, "description": "Sentiment Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.APPEARANCES", "name": "Sentiment Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "APPEARANCES", "data_length": 0, "description": "Sentiment Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.SEEN.DURATION.RATIO", "name": "Sentiment Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Sentiment Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "name": "Keywords", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 115, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.ID", "name": "Keyword Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "ID", "data_length": 40, "description": "Keyword Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.NAME", "name": "Keyword Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "NAME", "data_length": 40, "description": "Keyword Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.APPEARANCES", "name": "Keyword Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Keyword Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "name": "Faces", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 111, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.ID", "name": "Face Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "ID", "data_length": 40, "description": "Face Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.NAME", "name": "Face Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "NAME", "data_length": 40, "description": "Face Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.TITLE", "name": "Face Title", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Title", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "TITLE", "data_length": 249, "description": "Face Title", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.DESCRIPTION", "name": "Face Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Face Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.APPEARANCES", "name": "Face Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "APPEARANCES", "data_length": 0, "description": "Face Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SPEAKER.FACE.ID", "name": "Video Speaker Object Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Speaker Object Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "THUMBNAIL_OBJECT_ID", "data_length": 40, "description": "Video Speaker Object Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.SEEN.DURATION.RATIO", "name": "Face Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "SEEN_DURATION_RATIO", "data_length": 20, "description": "Face Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "name": "Brands", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 112, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.ID", "name": "Video Brand Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "ID", "data_length": 40, "description": "Brand Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.NAME", "name": "Video Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Brand Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.DESCRIPTION", "name": "Video Brand Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Brand Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.WIKIURL", "name": "Video Brand Wiki URL", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Wiki URL", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "WIKIURL", "data_length": 200, "description": "Brand Wiki URL", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.APPEARANCES", "name": "Video Brand Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Brand Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.SEEN.DURATION.RATIO", "name": "Video Brand Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Brand Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "name": "Speeches", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 116, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.ID", "name": "SpeechText Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "SpeechText Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "ID", "data_length": 40, "description": "SpeechText Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXT", "name": "Speech Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Text", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXT", "data_length": 1000, "description": "Speech Text", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXTTYPE", "name": "Speech Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXTTYPE", "data_length": 40, "description": "Speech Type", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.START TIME", "name": "Speech Start Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Start Time", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "START_TIME", "data_length": 40, "description": "Speech Start Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.END TIME", "name": "Speech End Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech End Time", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "END_TIME", "data_length": 40, "description": "Speech End Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "name": "Speakers", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 122, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.ID", "name": "Speaker Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "ID", "data_length": 40, "description": "Speaker Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.NAME", "name": "Speaker Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "NAME", "data_length": 100, "description": "Speaker Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.APPEARANCES", "name": "Speaker Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "APPEARANCES", "data_length": 0, "description": "Speaker Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.FIELDGROUP.LOCALASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200057, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1239, "metadata_element_list": [{"id": "FERRERO.FIELD.COUNTRY", "name": "LOCAL COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "LOCAL COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USER", "name": "USER", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "USER", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_USER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.ASSOCIATION", "name": "TYPE OF ASSOCIATION", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "TYPE OF ASSOCIATION", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_ASSOCIATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.VALUE", "name": "VALUE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "VALUE", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_VALUE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}], "has_multilingual_fields": false}, "mime_type": "image/jpeg", "path_list": [{"parents": [{"id": "50e4b3e99601b02fda1162b949073a158c06a427", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "50e4b3e99601b02fda1162b949073a158c06a427", "sequence_number": 0}, {"id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "name": "CONTENT SCALING 1234", "container_state": "NORMAL", "original_uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "sequence_number": 0}, {"id": "54ace5951af483836f95b6d4c69759d10e1eb12f", "name": "02.Campaigns", "container_state": "NORMAL", "original_uoi_id": "54ace5951af483836f95b6d4c69759d10e1eb12f", "sequence_number": 0}, {"id": "1638869b9b347c39842effc7e5ff965de47e8e65", "name": "01.Standard", "container_state": "NORMAL", "original_uoi_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "sequence_number": 0}, {"id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "name": "01.Poland", "container_state": "NORMAL", "original_uoi_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "sequence_number": 0}, {"id": "341bbf240ea033435cc225cd1add5c009bc067d7", "name": "PL", "container_state": "NORMAL", "original_uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "sequence_number": 0}, {"id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "name": "01. PL - Nutella", "container_state": "NORMAL", "original_uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "sequence_number": 0}, {"id": "5353bb35177d792b073acc634e010df2908fde32", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "0c30edd40569bc215307f7215ab86cbd8fac163b", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "0c30edd40569bc215307f7215ab86cbd8fac163b", "sequence_number": 0}, {"id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "name": "CONTENT SCALING XX", "container_state": "NORMAL", "original_uoi_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "sequence_number": 0}, {"id": "54ace5951af483836f95b6d4c69759d10e1eb12f", "name": "02.Campaigns", "container_state": "NORMAL", "original_uoi_id": "54ace5951af483836f95b6d4c69759d10e1eb12f", "sequence_number": 0}, {"id": "1638869b9b347c39842effc7e5ff965de47e8e65", "name": "01.Standard", "container_state": "NORMAL", "original_uoi_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "sequence_number": 0}, {"id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "name": "01.Poland", "container_state": "NORMAL", "original_uoi_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "sequence_number": 0}, {"id": "341bbf240ea033435cc225cd1add5c009bc067d7", "name": "PL", "container_state": "NORMAL", "original_uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "sequence_number": 0}, {"id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "name": "01. PL - Nutella", "container_state": "NORMAL", "original_uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "sequence_number": 0}, {"id": "5353bb35177d792b073acc634e010df2908fde32", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "4c1c7f196a1c3ed92b46d235cb565892ef92e843", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "4c1c7f196a1c3ed92b46d235cb565892ef92e843", "sequence_number": 0}, {"id": "0782f78ca6fe95281660f0299a8a28c526628c95", "name": "CONTENT SCALING OLIVER TEST 3", "container_state": "NORMAL", "original_uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "sequence_number": 0}, {"id": "f389599295d557119a440c04d15b17f1b6e59107", "name": "Campaigns", "container_state": "NORMAL", "original_uoi_id": "f389599295d557119a440c04d15b17f1b6e59107", "sequence_number": 0}, {"id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "name": "DE", "container_state": "NORMAL", "original_uoi_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "sequence_number": 0}, {"id": "5353bb35177d792b073acc634e010df2908fde32", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "251d8b8f1089c9f08cf282832453f0f6ccca00f1", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "251d8b8f1089c9f08cf282832453f0f6ccca00f1", "sequence_number": 0}, {"id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "name": "NUTELLA PLANT-BASED LAUNCH", "container_state": "NORMAL", "original_uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "sequence_number": 0}, {"id": "413c776f4416163b88737d53bb72dfe23bfd2430", "name": "Global", "container_state": "NORMAL", "original_uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "50e4b3e99601b02fda1162b949073a158c06a427", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "50e4b3e99601b02fda1162b949073a158c06a427", "sequence_number": 0}, {"id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "name": "Oliver Sharing", "container_state": "NORMAL", "original_uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "sequence_number": 0}, {"id": "23b155c32d5c6142914b41458234c100812bbec8", "name": "Oliver", "container_state": "NORMAL", "original_uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "sequence_number": 0}, {"id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "name": "Z - Exchange", "container_state": "NORMAL", "original_uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "4c1c7f196a1c3ed92b46d235cb565892ef92e843", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "4c1c7f196a1c3ed92b46d235cb565892ef92e843", "sequence_number": 0}, {"id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "name": "Oliver Sharing", "container_state": "NORMAL", "original_uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "sequence_number": 0}, {"id": "23b155c32d5c6142914b41458234c100812bbec8", "name": "Oliver", "container_state": "NORMAL", "original_uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "sequence_number": 0}, {"id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "name": "Z - Exchange", "container_state": "NORMAL", "original_uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}], "creator_id": "1003", "asset_state": "NORMAL", "checked_out": false, "folder_path": "", "content_size": 5000, "content_type": "BITMAP", "content_state": "NORMAL", "date_imported": "2025-10-31T16:39:58.037+01:00", "import_job_id": 214972, "subscribed_to": false, "collection_ids": [], "latest_version": true, "legacy_model_id": 116, "content_editable": true, "import_user_name": "bizAdmin", "date_last_updated": "2025-11-05T12:08:52.673+01:00", "metadata_model_id": "ECOMMERCE", "original_asset_id": "747110b96dede761a445a3bf0c90f13bb38024fa", "rendition_content": {"preview_content": {"id": "a5608ee8058228c10a407fbfcc00efe0a6ebe0ef", "url": "/otmmapi/v6/renditions/a5608ee8058228c10a407fbfcc00efe0a6ebe0ef", "name": "nutella pbased-S.png", "width": 203, "height": 249, "mime_type": "image/png", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "PREVIEW", "content_path": "data\\\\repository\\\\screen\\\\vol0\\\\180\\\\nutella pbased-S_a5608ee8058228c10a407fbfcc00efe0a6ebe0ef.png", "content_size": 23906, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "thumbnail_content": {"id": "9543be3395c8f021749463e081c7915466ee847d", "url": "/otmmapi/v6/renditions/9543be3395c8f021749463e081c7915466ee847d", "name": "nutella pbased-T.png", "width": 203, "height": 249, "mime_type": "image/png", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "THUMBNAIL", "content_path": "data\\\\repository\\\\thumb\\\\vol0\\\\195\\\\nutella pbased-T_9543be3395c8f021749463e081c7915466ee847d.png", "content_size": 23906, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_content_info": {"master_content": {"id": "b89909f751facf935dceb729a141fee657575a74", "url": "/otmmapi/v6/renditions/b89909f751facf935dceb729a141fee657575a74", "name": "nutella pbased.jpg", "width": 203, "height": 249, "mime_type": "image/jpeg", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\220\\\\nutella pbased_b89909f751facf935dceb729a141fee657575a74.jpg", "content_size": 5000, "unit_of_size": "BYTES", "content_checksum": "2e5fec19952ccaac976f13f88b3ef32d", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_state_user_id": "1001", "master_content_info": {"id": "b89909f751facf935dceb729a141fee657575a74", "url": "/otmmapi/v6/renditions/b89909f751facf935dceb729a141fee657575a74", "name": "nutella pbased.jpg", "width": 203, "height": 249, "mime_type": "image/jpeg", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\220\\\\nutella pbased_b89909f751facf935dceb729a141fee657575a74.jpg", "content_size": 5000, "unit_of_size": "BYTES", "content_checksum": "2e5fec19952ccaac976f13f88b3ef32d", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "delivery_service_url": "https://ppr.dam.ferrero.com/adaptivemedia/rendition?id=747110b96dede761a445a3bf0c90f13bb38024fa", "product_associations": false, "security_policy_list": [{"id": 7534, "name": "Nutella Global Editable Nutella Core", "status": "NORMAL", "created_by": "1003", "create_date": "2023-12-15T17:39:27.973+01:00", "description": "Nutella Global Editable Nutella Core", "ownership_type": "PUBLIC"}, {"id": 11338, "name": "Oliver Editable", "status": "NORMAL", "created_by": "1003", "create_date": "2025-10-29T10:16:15.733+01:00", "description": "Oliver Editable", "ownership_type": "PUBLIC"}], "thumbnail_content_id": "9543be3395c8f021749463e081c7915466ee847d", "content_state_user_id": "1003", "content_state_user_name": "OTMM BusinessAdmin", "asset_lock_state_user_id": "1001", "metadata_state_user_name": "otmm admin", "access_control_descriptor": {"permissions_map": {"entry": [{"key": "text.securityPolicy.permission.Custom04Permission", "value": true}, {"key": "text.securityPolicy.permission.ContentEditPermission", "value": true}, {"key": "text.securityPolicy.permission.AssetViewPermission", "value": true}, {"key": "text.securityPolicy.permission.ProjectViewPermission", "value": true}, {"key": "text.securityPolicy.permission.MembershipEditPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom03Permission", "value": true}, {"key": "text.securityPolicy.permission.MetaDataEditPermission", "value": true}, {"key": "text.securityPolicy.permission.EditParentsPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom02Permission", "value": true}, {"key": "text.securityPolicy.permission.ExportPermission", "value": true}, {"key": "text.securityPolicy.permission.SummaryViewPermission", "value": true}, {"key": "text.securityPolicy.permission.PreviewViewPermission", "value": true}, {"key": "text.securityPolicy.permission.SubscribePermission", "value": true}, {"key": "text.securityPolicy.permission.DeleteAssetPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom01Permission", "value": true}]}}, "content_lock_state_user_id": "1003", "asset_state_last_update_date": "2025-11-05T12:08:52.673+01:00", "content_lock_state_user_name": "bizAdmin", "metadata_lock_state_user_name": "tsuper", "content_state_last_update_date": "2025-10-31T16:39:58.203+01:00", "inherited_metadata_collections": [{"container_id": "50e4b3e99601b02fda1162b949073a158c06a427", "container_name": "00. Master Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "50e4b3e99601b02fda1162b949073a158c06a427", "originator_id": "50e4b3e99601b02fda1162b949073a158c06a427", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00. Master Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "container_name": "CONTENT SCALING 1234", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CONTENT SCALING 1234"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000564"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CONTENT_SCALING_12_JV_LA_MLT_NUT_0000564"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local adaptation of global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000138"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Brand", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Market", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2024/2025"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2792"}, "display_value": "N/A, adminuser (adminuser, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2792"}, "display_value": "N/A, adminuser (adminuser, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2792"}, "display_value": "N/A, adminuser (adminuser, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2792"}, "display_value": "N/A, adminuser (adminuser, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "A3"}, "display_value": "Localized Asset received from Agency", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "54ace5951af483836f95b6d4c69759d10e1eb12f", "container_name": "02.Campaigns", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "54ace5951af483836f95b6d4c69759d10e1eb12f", "originator_id": "54ace5951af483836f95b6d4c69759d10e1eb12f", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "02.Campaigns"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "container_name": "01.Standard", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "originator_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "01.Standard"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "container_name": "01.Poland", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "originator_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "01.Poland"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "container_name": "PL", "container_type_id": "GLOBALMARKETUNIT", "container_type_name": "L6 - MARKET UNIT", "inherited_metadata_values": [{"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "b94dd71b732e3c1df6ae63216c53d4d4b0e7f002"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E39"}, "display_value": "POLAND", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "container_name": "01. PL - Nutella", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "5efe2981e6f9afca7ed3fc91a171f02162ef23e3"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E008"}, "display_value": "POLAND", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0de507c8b9d1f5942b6376b6c2a2b3ec1097e42e"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "5353bb35177d792b073acc634e010df2908fde32", "container_name": "EU", "container_type_id": "GEOGRAPHYLOCAL", "container_type_name": "L4 - GEOGRAPHY LOCAL", "inherited_metadata_values": [{"id": "FERRERO.MARKET.FOLDER.GLOBAL", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "4c4d4bf36bf8b1ace55f990e78d6332a9cb20990"}, "metadata_element": {"id": "FERRERO.MARKET.FOLDER.GLOBAL", "name": "Global/Local (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "LOCAL"}, "display_value": "Local", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local (Marketing)", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "GLOBALLOCAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_AREA", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "3dc200c993ab8263952dc6da1498026f615f45dd"}, "metadata_element": {"id": "MARKETING_AREA", "name": "AREA", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E010"}, "display_value": "EUROPE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "AREA", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "AREA", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "AREA", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "dc7749c3e113ec9e0b9e9a3840ea55673ca5e49f"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "f2d658a3829c2ea158ae70a4b4e7928bcf88f8e2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "container_name": "Nutella", "container_type_id": "GLOBALBRAND", "container_type_name": "L3 - BRAND", "inherited_metadata_values": [{"id": "FERRERO.TABULAR.NEW.BRAND", "tabular": true, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "9bb1c183135f5240f09132aef59c4ea48c762381"}, "metadata_element": {"id": "FERRERO.TABULAR.NEW.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF30"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND (Marketing)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF30"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "BRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TABULAR_BRAND", "column_name": "BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.NEW.BRAND", "parent_table_name": "BRAND (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "tabular": true, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "a37b13c02cba799378211e17b73234a0d836f9b6"}, "metadata_element": {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "JV"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND(HARMONIZED)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "JV"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.HARMONIZEDBRAND", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_HARMONIZEDBRAND", "column_name": "HARMONIZEDBRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.HARMONIZEDBRAND", "parent_table_name": "BRAND(HARMONIZED)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "container_name": "01. Nutella Core", "container_type_id": "GLOBALSUBCATEGORY", "container_type_name": "L2 - SUBCATEGORY", "inherited_metadata_values": [{"id": "MARKETING_SUBCATEGORY", "tabular": false, "value_id": {"uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "originator_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "inherited_field_id": "3000ad591e09b5c75f85fc2ccbb9ebeb31b3ab78"}, "metadata_element": {"id": "MARKETING_SUBCATEGORY", "name": "SUBCATEGORY", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Mart-Nutella-Core"}, "display_value": "Nutella Core", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "SUBCATEGORY", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "SUBCATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "SUBCATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "tabular": true, "value_id": {"uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "originator_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "inherited_field_id": "2c751ce760d88c0e271925ea5149348106944bfa"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Subcategory Owner", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_SUBCATEGORY_OWNER_TM", "column_name": "SUBCATEGORY_OWNER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "parent_table_name": "Subcategory Owner", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "container_name": "Nutella", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "originator_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E04"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "0c30edd40569bc215307f7215ab86cbd8fac163b", "container_name": "00. Master Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "0c30edd40569bc215307f7215ab86cbd8fac163b", "originator_id": "0c30edd40569bc215307f7215ab86cbd8fac163b", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00. Master Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "container_name": "CONTENT SCALING XX", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "originator_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CONTENT SCALING XX"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "originator_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000566"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "originator_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CONTENT_SCALING_XX_JV_LA_MLT_NUT_0000566"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "originator_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "originator_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "originator_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local adaptation of global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "originator_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000138"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "originator_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Brand", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "originator_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Market", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "originator_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2024/2025"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "originator_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "originator_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "originator_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "A5"}, "display_value": "Rework needed from Agency", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "4c1c7f196a1c3ed92b46d235cb565892ef92e843", "container_name": "00. Master Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "4c1c7f196a1c3ed92b46d235cb565892ef92e843", "originator_id": "4c1c7f196a1c3ed92b46d235cb565892ef92e843", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00. Master Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "container_name": "CONTENT SCALING OLIVER TEST 3", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CONTENT SCALING OLIVER TEST 3"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000551"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CONTENT_SCALING_OLI_JV_LA_DE_NUT_0000551"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local adaptation of global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000068"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Brand", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Market", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2025/2026"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2821"}, "display_value": "N/A, Krithiha (Krithiha, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2821"}, "display_value": "N/A, Krithiha (Krithiha, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2821"}, "display_value": "N/A, Krithiha (Krithiha, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2821"}, "display_value": "N/A, Krithiha (Krithiha, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "A1"}, "display_value": "Local Campaign ready for localization", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "f389599295d557119a440c04d15b17f1b6e59107", "container_name": "Campaigns", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "f389599295d557119a440c04d15b17f1b6e59107", "originator_id": "f389599295d557119a440c04d15b17f1b6e59107", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Campaigns"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "container_name": "DE", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "originator_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "inherited_field_id": "5efe2981e6f9afca7ed3fc91a171f02162ef23e3"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E006"}, "display_value": "GERMANY", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "originator_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Local DE Editable Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "originator_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Nutella Local DE Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "originator_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "originator_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "inherited_field_id": "0de507c8b9d1f5942b6376b6c2a2b3ec1097e42e"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E64"}, "display_value": "GERMANY", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "originator_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local comm on global brands"}, "display_value": "Local comm on global brands", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local comm on global brands"}, "display_value": "Local comm on global brands", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "251d8b8f1089c9f08cf282832453f0f6ccca00f1", "container_name": "05. Final Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "251d8b8f1089c9f08cf282832453f0f6ccca00f1", "originator_id": "251d8b8f1089c9f08cf282832453f0f6ccca00f1", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "05. Final Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "container_name": "NUTELLA PLANT-BASED LAUNCH", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA PLANT-BASED LAUNCH"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000068"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "GL_FY25_NUT_30_NUTELLA_PLANT_00068"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Brand", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Market", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Global comm024/2025"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2821"}, "display_value": "N/A, Krithiha (Krithiha, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2821"}, "display_value": "N/A, Krithiha (Krithiha, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2821"}, "display_value": "N/A, Krithiha (Krithiha, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2821"}, "display_value": "N/A, Krithiha (Krithiha, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "B2"}, "display_value": "Master campaign received from Agency", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "container_name": "Global", "container_type_id": "GEOGRAPHYGLOBAL", "container_type_name": "L4 - GEOGRAPHY GLOBAL", "inherited_metadata_values": [{"id": "FERRERO.MARKET.FOLDER.GLOBAL", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "963db123044a8d3ff5d8f4aac56d35df77a7656c"}, "metadata_element": {"id": "FERRERO.MARKET.FOLDER.GLOBAL", "name": "Global/Local (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "GLOBAL"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local (Marketing)", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "GLOBALLOCAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_AREA", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "3a37ace6a53a93799e0e18773ba6c7e70305cc78"}, "metadata_element": {"id": "MARKETING_AREA", "name": "AREA", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AREA", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "AREA", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "AREA", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "9f64f884b41d2a8445f4d9cd60714e91024e8b13"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Global Editable Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "8847a6dfbebcf323a8170649b390af1a375c08b8"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Nutella Global Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "758e614412f11ecb58446966d328974daf253446"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "53df9e81ae46cf6bd2440643426224b1fb904aeb"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "name": "Published Security Policy - Restricted Visibility", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Global Published Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Security Policy - Restricted Visibility", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_VISIBILITY_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "0fbcf70c95f5d28645e7a6187f7c429d62e60380"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Global comm"}, "display_value": "Global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Global comm"}, "display_value": "Global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "container_name": "Oliver Sharing", "container_type_id": "L3 - Agency Structure", "container_type_name": "L3 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "55530f721f18c847e35d7c828edf53461b5014b0"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "330bb6f68316aab5c45f9fe34e047cce573c67cc"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "name": "Agency Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "AGENCY_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "e30e90d694f9935d4c15c4c78891beed8853a272"}, "metadata_element": {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "name": "Published Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "PUBLISHED_ASSET_SP_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "23b155c32d5c6142914b41458234c100812bbec8", "container_name": "Oliver", "container_type_id": "L2 - Agency Structure", "container_type_name": "L2 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.AGENCY", "tabular": false, "value_id": {"uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "originator_id": "23b155c32d5c6142914b41458234c100812bbec8", "inherited_field_id": "48fcbc397986aca5bb8722a95197dd0a46f19b4e"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_AGENCY", "column_name": "AGENCY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "container_name": "Z - Exchange", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "YY"}, "display_value": "AGENCIES", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}], "asset_lock_state_last_update_date": "2025-11-05T12:08:52.677+01:00", "content_lock_state_last_update_date": "2025-10-31T16:39:59.727+01:00"}, "language_code": null, "language_name": null, "subject_title": null, "file_extension": ".jpg", "asset_type_name": null, "file_size_bytes": null, "duration_seconds": null, "upload_directory": "89fa66f966144467721d6829db4d88d25ac026b1", "local_campaign_id": "C000000551", "original_filename": "nutella pbased", "global_master_folder_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "global_master_campaign_id": "C000000068"} 2025-11-05 22:14:25.708002 \N 2 pOiJ9s master_asset_created {"id": 2, "tags": null, "status": "active", "width_px": null, "height_px": null, "mime_type": "image/jpeg", "asset_type": null, "brand_code": null, "brand_name": null, "categories": null, "created_at": "2025-11-05T22:14:28.65811", "deleted_at": null, "is_deleted": false, "updated_at": "2025-11-05T22:14:28.65811", "description": "Box File ID: 2037673275907\\nBox URL: https://app.box.com/file/2037673275907\\nDAM Asset ID: c8c5e34bc384c3dcc5fe06b91b6e0cfec2786f77", "ingested_at": "2025-11-05T22:14:28.65811", "ingested_by": null, "opentext_id": "c8c5e34bc384c3dcc5fe06b91b6e0cfec2786f77", "tracking_id": "pOiJ9s", "aspect_ratio": null, "country_code": null, "country_name": null, "full_metadata": {"name": "nutella pbased_beauty.jpg", "links": {"links": [], "source_id": "c8c5e34bc384c3dcc5fe06b91b6e0cfec2786f77"}, "locked": false, "deleted": false, "expired": false, "version": 1, "asset_id": "c8c5e34bc384c3dcc5fe06b91b6e0cfec2786f77", "metadata": {"id": "ECOMMERCE", "name": "Marketing Asset", "type": "com.artesia.metadata.MetadataModel", "legacy_id": 116, "metadata_element_list": [{"id": "FERRERO.CATEGORY.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200054, "metadata_element_list": []}, {"id": "FERRER.CATEGORY.ASSET_INFO", "name": "Asset Info", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200022, "metadata_element_list": [{"id": "FERRERO.FIELD.FISCAL YEAR", "name": "Release Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2025/2026"}, "display_value": "2025/2026", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Release Fiscal Year", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_DOMAIN_FISCAL_YEAR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "FISCAL__YEAR", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "name": "Main Languages", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1210, "metadata_element_list": [{"id": "MAIN_LANGUAGES", "name": "MAIN LANGUAGES", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "MAIN LANGUAGES", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MAIN LAGUAGES_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MAIN_LANGUAGE_TABLE", "column_name": "MAIN_LANGUAGE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "parent_table_name": "Main Languages", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.ASSET DESCRIPTION", "name": "Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Description", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "DESCR", "data_length": 249, "description": "Descriptive information", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.FLAVOUR", "name": "Flavour", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Flavour", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.FLAVOUR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FLAVOUR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.SIZE", "name": "Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Size", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.SIZE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SIZE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1241, "metadata_element_list": [{"id": "FERRERO.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Compliance", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ASSETCOMPLIANCE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_COMPLIANCE", "column_name": "ASSET_COMPLIANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "parent_table_name": "Asset Compliance", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.TAG DETAILS", "name": "Tag Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 118, "metadata_element_list": [{"id": "ARTESIA.FIELD.TAG", "name": "Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "food", "field_value": {"type": "string", "value": "food"}, "display_value": "food", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Tag", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "food", "field_value": {"type": "string", "value": "food"}, "display_value": "food", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "indoor", "field_value": {"type": "string", "value": "indoor"}, "display_value": "indoor", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "kitchen appliance", "field_value": {"type": "string", "value": "kitchen appliance"}, "display_value": "kitchen appliance", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "text", "field_value": {"type": "string", "value": "text"}, "display_value": "text", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "snack", "field_value": {"type": "string", "value": "snack"}, "display_value": "snack", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "bottle", "field_value": {"type": "string", "value": "bottle"}, "display_value": "bottle", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "fast food", "field_value": {"type": "string", "value": "fast food"}, "display_value": "fast food", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "kitchen", "field_value": {"type": "string", "value": "kitchen"}, "display_value": "kitchen", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.TAGS", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "OTMM_TAGS", "column_name": "TAG", "data_length": 80, "description": "Tag", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG CONFIDENCE", "name": "Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 96.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Confidence", "values": [{"value": {"type": "decimal", "value": 96.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 93.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 64.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 64.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 62.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 59.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 57.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 51.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Confidence", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG TYPE", "name": "Tag Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Tag Type", "values": [{"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "TAG_TYPE", "data_length": 10, "description": "Tag Type", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED BY", "name": "Associated By", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Associated By", "values": [{"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_BY", "data_length": 10, "description": "Associated By", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED DATE", "name": "Associated Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-11-03T12:14:48.447+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Associated Date", "values": [{"value": {"type": "dateTime", "value": "2025-11-03T12:14:48.447+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-11-03T12:14:48.447+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-11-03T12:14:48.447+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-11-03T12:14:48.45+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-11-03T12:14:48.45+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-11-03T12:14:48.45+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-11-03T12:14:48.45+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-11-03T12:14:48.45+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_DATE", "data_length": 10, "description": "Associated Date", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.STATE", "name": "Global/Local", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "GLOBAL"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO_NOTNULL", "facetable": true, "searchable": true, "table_name": "FERRERO_IC_ASSET_DETAILS", "column_name": "ASSET_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.ASPECT RATIO", "name": "Aspect Ratio (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio (Marketing)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASPECT_RATIO", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASPECT_RATIO", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "name": "Tag (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1222, "metadata_element_list": [{"id": "MARKETING_TAG", "name": "Marketing Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Marketing Tag", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.DOMAIN.TAG", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TAG_MARKET", "column_name": "TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "parent_table_name": "Tag (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.TAGS", "name": "Auto-Generated Tags", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Auto-Generated Tags", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "AUTO_GENERATED_TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CERTIFIER", "name": "Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approver", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.MARKETING.FIELD.APPROVAL DATE", "name": "Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.CERTIFIER COMMENT", "name": "Approver Comment", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approver Comment", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "CERTIFIER_COMMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.LEGAL CERTIFER", "name": "Legal Certifier", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "User, Legal IA&CC (Local Legal IA&CC, active)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal Certifier", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "LEGAL_CERTIFIER_MARKETING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.LEGAL APPROVAL DATE", "name": "Legal Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-11-05T00:00:00+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.LEGAL COMMENT", "name": "Legal Comment", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal Comment", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_COMMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CERTIFIER", "name": "IA&CC Certifier", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "User, Legal IA&CC (Local Legal IA&CC, active)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Certifier", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CC APPROVAL DATE", "name": "IA&CC Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-11-05T00:00:00+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CC COMMENT", "name": "IA&CC Comment", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Comment", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_COMMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "name": "Extended Approval", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1230, "metadata_element_list": [{"id": "FERRERO.FIELD.EXTENDED.APPROVAL", "name": "Extended Approval required by:", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended Approval required by:", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COMMENTS", "name": "Comment", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comment", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "COMMENTS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.DATE", "name": "Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USERS", "name": "User ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "User ID", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "USERS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXTENDED.JOBID", "name": "Extended JobID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended JobID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.MIGRATION.INDEX", "name": "Migration Index", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Migration Index", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MIGRATION.INDEX", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MIGRATION_INDEX", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "FERRERO_MARKET_MARKETING_CREATOR", "name": "Marketing Creator", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Marketing Creator", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.CREATOR", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MARKETING_CREATOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "ARTESIA.FIELD.IS LATEST VERSION", "name": "Is Latest Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Y"}, "display_value": "Yes", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Is Latest Version", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.YES_NO", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "IS_LATEST_VERSION", "data_length": 1, "description": "Is this the latest version? (Y/N)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET VERSION", "name": "Asset Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 1}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Version", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "INTEGER", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "VERSION", "data_length": 12, "description": "Version number of asset", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET_ID", "name": "Asset ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "c8c5e34bc384c3dcc5fe06b91b6e0cfec2786f77"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset ID", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "LOGICAL_UOI_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.ECOMMERCE STATUS", "name": "Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "PENDING"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Status", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "ASSET_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CREATOR", "name": "Uploaded by", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Uploaded by", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_USER_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.FIELD.CREATION DATE", "name": "Upload Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-11-03T12:14:41.897+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Upload Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_DT", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.ASSET NAME", "name": "Asset Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "nutella pbased_beauty.jpg"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Name", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "description": "Original name of master object", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.CONTENT TYPE", "name": "Content Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "BITMAP"}, "display_value": "Image", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Type", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.CONTENT_TYPES", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "CONTENT_TYPE", "data_length": 8, "description": "Content Type", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.MIME TYPE", "name": "File Extension", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "image/jpeg"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Extension", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_MIME_TYPE", "data_length": 80, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.FILE.SIZE", "name": "File Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "long", "value": 6538}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Size", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "LONG", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_SIZE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP RESOLUTION", "name": "Bitmap Resolution", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 72}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Resolution", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_RESOLUTION", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP WIDTH", "name": "Bitmap Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 300}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Width", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_WIDTH", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP HEIGHT", "name": "Bitmap Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 168}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Height", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_HEIGHT", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.VIDEO.BIT_RATE", "name": "Bitrate", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitrate", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "BIT_RATE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.EMBEDDED.FIELD.DURATION", "name": "Duration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Duration", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "DURATION_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.ASPECT RATIO", "name": "Aspect Ratio", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "ASPECT_RATIO", "data_length": 30, "displayable": false, "instructions": "ASPECT_RATIO", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME HEIGHT", "name": "Frame Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Height", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_HEIGHT", "data_length": 12, "displayable": true, "instructions": "FRAME_HEIGHT", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME WIDTH", "name": "Frame Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Width", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_WIDTH", "data_length": 12, "displayable": true, "instructions": "FRAME_WIDTH", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.ASPECT.RATIO.POC", "name": "Aspect Ratio(POC)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "16:9"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio(POC)", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASPECT_RATIO_TABLE", "column_name": "ASPECT_RATIO", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "PRODUCT.DETAILS", "name": "Product Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200029, "metadata_element_list": [{"id": "FERRERO.TABLE.EANCODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1208, "metadata_element_list": [{"id": "EAN_CODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "EAN CODE/ 77 CODE", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "EAN.CODE", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "EAN_CODE", "column_name": "EAN_CODE_DESCRIPTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "COUNTRY", "name": "COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "EAN_CODE", "column_name": "COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.SUB BRAND", "name": "Sub-Brands", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Sub-Brands", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.SUBBRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "SUB_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT WEIGHT", "name": "Product Weight", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Weight", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_WEIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.CONSUMER UNIT PACKAGING", "name": "Consumer Unit Packaging", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Consumer Unit Packaging", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PACK", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "CONSUMER_UNIT_PACKAGING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.4 DIGIT CODE", "name": "4 Digit Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "4 Digit Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "DIGITCODE", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERREO.ECOM.RETAILER_SPECIFIC_FIELD", "name": "Retailer Specific", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Retailer Specific", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "RETAILER_SPECIFIC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "cascading_group_id": "FERRERO.RETAILER.SPECIFIC", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY END PERIOD", "name": "Asset validity end period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity end period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_ENDING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT VIEW", "name": "Product View", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product View", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT VIEW", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_VIEW", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT ANGLE", "name": "Product Angle", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Angle", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT.ANGLE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_ANGLE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT STATE", "name": "Product State", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product State", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT STATE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PROMOTION ID", "name": "Promo ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Promo ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROMO_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200048, "metadata_element_list": []}, {"id": "FERRERO.FIELD.CREATIX", "name": "CreativeX", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200059, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.CREATIVEX", "name": "Confidence", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1245, "metadata_element_list": [{"id": "FERRERO.TAB.FIELD.CREATIVEX", "name": "Platform > Rating (%)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.CascadingDomainValue", "field_value": {"type": "string", "value": "Google Ads^10"}, "element_values": {"entry": [{"key": 1, "value": {"active_to": "", "active_from": "", "description": "Google Ads", "field_value": {"type": "string", "value": "Google Ads"}, "display_value": "Google Ads", "expired_value": false}}, {"key": 2, "value": {"active_to": "", "active_from": "", "description": "10", "field_value": {"type": "string", "value": "10"}, "display_value": "10", "expired_value": false}}]}}, "is_locked": false, "domain_value": false, "cascading_domain_value": true}, "prompt": "Platform > Rating (%)", "values": [{"value": {"type": "com.artesia.metadata.CascadingDomainValue", "field_value": {"type": "string", "value": "Google Ads^10"}, "element_values": {"entry": [{"key": 1, "value": {"active_to": "", "active_from": "", "description": "Google Ads", "field_value": {"type": "string", "value": "Google Ads"}, "display_value": "Google Ads", "expired_value": false}}, {"key": 2, "value": {"active_to": "", "active_from": "", "description": "10", "field_value": {"type": "string", "value": "10"}, "display_value": "10", "expired_value": false}}]}}, "is_locked": false, "domain_value": false, "cascading_domain_value": true}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_CREATIVEX", "column_name": "CREATIVEX_NEW", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CREATIVEX", "parent_table_name": "Confidence", "cascading_group_id": "FERRERO.CREATIVEX.CHAR", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.CREATIVEX LINK", "name": "CreativeX Hyperlink", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "CreativeX Hyperlink", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_CREATIVEX", "column_name": "CREATIVE_LINK", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.IP_RIGHTS", "name": "IP Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200046, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.IPRIGHT", "name": "IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "IP Rights", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.IPRIGHTS", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IP_RIGHTS", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.BUYOUT", "name": "Touchpoint Scope", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Touchpoint Scope", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.TOTAL_BUYOUT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TOTAL_BUYOUT", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.FERRERO PROPERTY", "name": "Ferrero Property", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Ferrero Property", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.FERRERO_PROPERTY", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FERRERO_PROPERTY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200035, "metadata_element_list": []}, {"id": "FERRERO.MARKET.VID_STAT_RIGHT", "name": "Video & Static Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200047, "metadata_element_list": [{"id": "FERRERO.MARKET.VID_N_STAT", "name": "Video and Static Right", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Video and Static Right", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VID_AND_STAT_RIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.VID_STAT_TYPE", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1221, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.TYPE_VID", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Video & Static Right", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TYPE_VID_STAT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_MARKET_TYPE_VID_STAT", "column_name": "TYPE_OF_VIDEO_STATIC_RIGHT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.VID_STAT_TYPE", "parent_table_name": "Type of Video & Static Right", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKET.PROD_COMPANY", "name": "Production House", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Production House", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.PRODUCT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200050, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.LICENSIN", "name": "Licensing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Licensing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSING", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "cascading_group_id": "FERRERO.MARKET.CG.LICENSE", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.SPOT_DETAILS", "name": "Spot Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200049, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.SPOT_VERSION", "name": "Spot Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Version", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_VERSION", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_VERSION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.SPOT_TYPE", "name": "Spot Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_TYPE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.DIRECTOR_NAME", "name": "Director Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Director Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "DIRECTOR_NAME", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VIDEO_POST_PROD_COMPANY", "name": "Video Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VID_POST_PROD_CONTACT", "name": "Video Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_COMPANY", "name": "Audio Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_CONTACT", "name": "Audio Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.BROADCASTER.CODE", "name": "Broadcaster Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Broadcaster Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BROADCASTER_CODE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.TECHNICAL_VALIDATION", "name": "Technical Validation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Technical Validation", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TECHNICAL_VALIDATION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS", "name": "Media Analysis", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1002, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES COUNT", "name": "Faces Count", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Faces Count", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACECOUNT", "column_name": "COUNT", "data_length": 10, "description": "Faces Count", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "name": "Face Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 106, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME", "name": "Recognized Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME", "data_length": 2000, "description": "Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME CONFIDENCE", "name": "Recognized Name Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME_CONFIDENCE", "data_length": 10, "description": "Name Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE", "name": "Person Age", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE", "data_length": 10, "description": "Person Age", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE CONFIDENCE", "name": "Person Age Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Person Age Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_CONFIDENCE", "data_length": 10, "description": "Person Age Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER", "name": "Gender", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Gender", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.GENDER", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER", "data_length": 40, "description": "Gender", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER CONFIDENCE", "name": "Gender Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Gender Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER_CONFIDENCE", "data_length": 10, "description": "Gender Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.FACE COORDS", "name": "Face Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "FACE_COORDS", "data_length": 200, "description": "Face Coordinates like postion, height,width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE GROUP", "name": "Person Age Group", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age Group", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.AGE GROUP", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_GROUP", "data_length": 10, "description": "Person Age Group", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.ISBW", "name": "Is Black and White", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "false"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Is Black and White", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "ISBW", "data_length": 10, "description": "Is Black and White", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "name": "Image Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 110, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.IMAGE TYPE", "name": "Analysis Image Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Analysis Image Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_IMAGE_TYPE", "column_name": "TYPE", "data_length": 100, "description": "Image Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "parent_table_name": "Image Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.DATE", "name": "Date: Media Analysis", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-11-03T12:14:48+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date: Media Analysis", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MEDIA_ANALYSIS_DATE", "data_length": 25, "description": "Date Media Analysis was done on the asset.", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false}]}, {"id": "HYBRIS.PRODUCT.INFO", "name": "PIM Item Reference", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200027, "metadata_element_list": [{"id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "name": "Hybris Item Reference", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1206, "metadata_element_list": [{"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ID", "name": "Hybris Item ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ID", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT TAG NAME", "name": "Hybris Assignment Label", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Assignment Label", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_TAG_NAME", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ATTRIBUTE NAME", "name": "Hybris Attribute Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Attribute Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ATTRIBUTE_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT CATALOG NAME", "name": "Hybris Catalog Mnemonic", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Catalog Mnemonic", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_CATALOG_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT PK", "name": "Hybris Item PK", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item PK", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_PK", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.SYSTEM ID", "name": "Hybris System ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris System ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "SYSTEM_ID", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.ASSIGNED", "name": "Assigned", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Assigned", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "ASSIGNED", "column_name": "ASSIGNED", "data_length": 38, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PIM TYPE", "name": "PIM Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "PIM Type", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_PIM_TYPE", "column_name": "PIM_TYPE", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS VIDEO", "name": "Media Analysis Video", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1003, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "name": "Labels", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 113, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.ID", "name": "Label Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "ID", "data_length": 40, "description": "Label Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.NAME", "name": "Label Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "NAME", "data_length": 40, "description": "Label Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.APPEARANCES", "name": "Label Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "APPEARANCES", "data_length": 0, "description": "Label Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "name": "Sentiments", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 114, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.ID", "name": "Sentiment Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "ID", "data_length": 40, "description": "Sentiment Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.NAME", "name": "Sentiment Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "NAME", "data_length": 40, "description": "Sentiment Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.APPEARANCES", "name": "Sentiment Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "APPEARANCES", "data_length": 0, "description": "Sentiment Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.SEEN.DURATION.RATIO", "name": "Sentiment Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Sentiment Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "name": "Keywords", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 115, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.ID", "name": "Keyword Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "ID", "data_length": 40, "description": "Keyword Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.NAME", "name": "Keyword Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "NAME", "data_length": 40, "description": "Keyword Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.APPEARANCES", "name": "Keyword Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Keyword Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "name": "Faces", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 111, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.ID", "name": "Face Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "ID", "data_length": 40, "description": "Face Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.NAME", "name": "Face Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "NAME", "data_length": 40, "description": "Face Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.TITLE", "name": "Face Title", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Title", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "TITLE", "data_length": 249, "description": "Face Title", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.DESCRIPTION", "name": "Face Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Face Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.APPEARANCES", "name": "Face Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "APPEARANCES", "data_length": 0, "description": "Face Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SPEAKER.FACE.ID", "name": "Video Speaker Object Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Speaker Object Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "THUMBNAIL_OBJECT_ID", "data_length": 40, "description": "Video Speaker Object Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.SEEN.DURATION.RATIO", "name": "Face Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "SEEN_DURATION_RATIO", "data_length": 20, "description": "Face Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "name": "Brands", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 112, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.ID", "name": "Video Brand Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "ID", "data_length": 40, "description": "Brand Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.NAME", "name": "Video Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Brand Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.DESCRIPTION", "name": "Video Brand Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Brand Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.WIKIURL", "name": "Video Brand Wiki URL", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Wiki URL", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "WIKIURL", "data_length": 200, "description": "Brand Wiki URL", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.APPEARANCES", "name": "Video Brand Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Brand Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.SEEN.DURATION.RATIO", "name": "Video Brand Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Brand Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "name": "Speeches", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 116, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.ID", "name": "SpeechText Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "SpeechText Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "ID", "data_length": 40, "description": "SpeechText Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXT", "name": "Speech Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Text", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXT", "data_length": 1000, "description": "Speech Text", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXTTYPE", "name": "Speech Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXTTYPE", "data_length": 40, "description": "Speech Type", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.START TIME", "name": "Speech Start Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Start Time", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "START_TIME", "data_length": 40, "description": "Speech Start Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.END TIME", "name": "Speech End Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech End Time", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "END_TIME", "data_length": 40, "description": "Speech End Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "name": "Speakers", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 122, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.ID", "name": "Speaker Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "ID", "data_length": 40, "description": "Speaker Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.NAME", "name": "Speaker Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "NAME", "data_length": 100, "description": "Speaker Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.APPEARANCES", "name": "Speaker Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "APPEARANCES", "data_length": 0, "description": "Speaker Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.FIELDGROUP.LOCALASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200057, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1239, "metadata_element_list": [{"id": "FERRERO.FIELD.COUNTRY", "name": "LOCAL COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "LOCAL COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USER", "name": "USER", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "USER", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_USER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.ASSOCIATION", "name": "TYPE OF ASSOCIATION", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "TYPE OF ASSOCIATION", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_ASSOCIATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.VALUE", "name": "VALUE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "VALUE", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_VALUE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}], "has_multilingual_fields": false}, "mime_type": "image/jpeg", "path_list": [{"parents": [{"id": "50e4b3e99601b02fda1162b949073a158c06a427", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "50e4b3e99601b02fda1162b949073a158c06a427", "sequence_number": 0}, {"id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "name": "CONTENT SCALING 1234", "container_state": "NORMAL", "original_uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "sequence_number": 0}, {"id": "54ace5951af483836f95b6d4c69759d10e1eb12f", "name": "02.Campaigns", "container_state": "NORMAL", "original_uoi_id": "54ace5951af483836f95b6d4c69759d10e1eb12f", "sequence_number": 0}, {"id": "1638869b9b347c39842effc7e5ff965de47e8e65", "name": "01.Standard", "container_state": "NORMAL", "original_uoi_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "sequence_number": 0}, {"id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "name": "01.Poland", "container_state": "NORMAL", "original_uoi_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "sequence_number": 0}, {"id": "341bbf240ea033435cc225cd1add5c009bc067d7", "name": "PL", "container_state": "NORMAL", "original_uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "sequence_number": 0}, {"id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "name": "01. PL - Nutella", "container_state": "NORMAL", "original_uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "sequence_number": 0}, {"id": "5353bb35177d792b073acc634e010df2908fde32", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 1, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "dbef1c50275e771c31a26fc1f9ecf4e286907349", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "dbef1c50275e771c31a26fc1f9ecf4e286907349", "sequence_number": 0}, {"id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "name": "CONTENT SCALING 12345", "container_state": "NORMAL", "original_uoi_id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "sequence_number": 0}, {"id": "54ace5951af483836f95b6d4c69759d10e1eb12f", "name": "02.Campaigns", "container_state": "NORMAL", "original_uoi_id": "54ace5951af483836f95b6d4c69759d10e1eb12f", "sequence_number": 0}, {"id": "1638869b9b347c39842effc7e5ff965de47e8e65", "name": "01.Standard", "container_state": "NORMAL", "original_uoi_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "sequence_number": 0}, {"id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "name": "01.Poland", "container_state": "NORMAL", "original_uoi_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "sequence_number": 0}, {"id": "341bbf240ea033435cc225cd1add5c009bc067d7", "name": "PL", "container_state": "NORMAL", "original_uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "sequence_number": 0}, {"id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "name": "01. PL - Nutella", "container_state": "NORMAL", "original_uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "sequence_number": 0}, {"id": "5353bb35177d792b073acc634e010df2908fde32", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "4c1c7f196a1c3ed92b46d235cb565892ef92e843", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "4c1c7f196a1c3ed92b46d235cb565892ef92e843", "sequence_number": 0}, {"id": "0782f78ca6fe95281660f0299a8a28c526628c95", "name": "CONTENT SCALING OLIVER TEST 3", "container_state": "NORMAL", "original_uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "sequence_number": 0}, {"id": "f389599295d557119a440c04d15b17f1b6e59107", "name": "Campaigns", "container_state": "NORMAL", "original_uoi_id": "f389599295d557119a440c04d15b17f1b6e59107", "sequence_number": 0}, {"id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "name": "DE", "container_state": "NORMAL", "original_uoi_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "sequence_number": 0}, {"id": "5353bb35177d792b073acc634e010df2908fde32", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 1, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "251d8b8f1089c9f08cf282832453f0f6ccca00f1", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "251d8b8f1089c9f08cf282832453f0f6ccca00f1", "sequence_number": 0}, {"id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "name": "NUTELLA PLANT-BASED LAUNCH", "container_state": "NORMAL", "original_uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "sequence_number": 0}, {"id": "413c776f4416163b88737d53bb72dfe23bfd2430", "name": "Global", "container_state": "NORMAL", "original_uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 1, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "dbef1c50275e771c31a26fc1f9ecf4e286907349", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "dbef1c50275e771c31a26fc1f9ecf4e286907349", "sequence_number": 0}, {"id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "name": "Oliver Sharing", "container_state": "NORMAL", "original_uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "sequence_number": 0}, {"id": "23b155c32d5c6142914b41458234c100812bbec8", "name": "Oliver", "container_state": "NORMAL", "original_uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "sequence_number": 0}, {"id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "name": "Z - Exchange", "container_state": "NORMAL", "original_uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "50e4b3e99601b02fda1162b949073a158c06a427", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "50e4b3e99601b02fda1162b949073a158c06a427", "sequence_number": 0}, {"id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "name": "Oliver Sharing", "container_state": "NORMAL", "original_uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "sequence_number": 0}, {"id": "23b155c32d5c6142914b41458234c100812bbec8", "name": "Oliver", "container_state": "NORMAL", "original_uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "sequence_number": 0}, {"id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "name": "Z - Exchange", "container_state": "NORMAL", "original_uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "sequence_number": 0}], "complete": true, "sequence_number": 1, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "4c1c7f196a1c3ed92b46d235cb565892ef92e843", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "4c1c7f196a1c3ed92b46d235cb565892ef92e843", "sequence_number": 0}, {"id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "name": "Oliver Sharing", "container_state": "NORMAL", "original_uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "sequence_number": 0}, {"id": "23b155c32d5c6142914b41458234c100812bbec8", "name": "Oliver", "container_state": "NORMAL", "original_uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "sequence_number": 0}, {"id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "name": "Z - Exchange", "container_state": "NORMAL", "original_uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "sequence_number": 0}], "complete": true, "sequence_number": 1, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}], "creator_id": "1003", "asset_state": "NORMAL", "checked_out": false, "folder_path": "", "content_size": 6538, "content_type": "BITMAP", "content_state": "NORMAL", "date_imported": "2025-11-03T12:14:41.897+01:00", "import_job_id": 215101, "subscribed_to": false, "collection_ids": [], "latest_version": true, "legacy_model_id": 116, "content_editable": true, "import_user_name": "bizAdmin", "date_last_updated": "2025-11-05T19:26:18.707+01:00", "metadata_model_id": "ECOMMERCE", "original_asset_id": "c8c5e34bc384c3dcc5fe06b91b6e0cfec2786f77", "rendition_content": {"preview_content": {"id": "a3a19abbd3918a13b5b4ad6e6931ad1a871d44ca", "url": "/otmmapi/v6/renditions/a3a19abbd3918a13b5b4ad6e6931ad1a871d44ca", "name": "nutella pbased_beauty-S.png", "width": 300, "height": 168, "mime_type": "image/png", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "PREVIEW", "content_path": "data\\\\repository\\\\screen\\\\vol0\\\\180\\\\nutella pbased_beauty-S_a3a19abbd3918a13b5b4ad6e6931ad1a871d44ca.png", "content_size": 62296, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "thumbnail_content": {"id": "200f1d3604a24a25afeb24df3c03ad51c63449cc", "url": "/otmmapi/v6/renditions/200f1d3604a24a25afeb24df3c03ad51c63449cc", "name": "nutella pbased_beauty-T.png", "width": 300, "height": 168, "mime_type": "image/png", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "THUMBNAIL", "content_path": "data\\\\repository\\\\thumb\\\\vol0\\\\195\\\\nutella pbased_beauty-T_200f1d3604a24a25afeb24df3c03ad51c63449cc.png", "content_size": 62296, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_content_info": {"master_content": {"id": "297c36f39e99d4408389766544b3cf317e95886c", "url": "/otmmapi/v6/renditions/297c36f39e99d4408389766544b3cf317e95886c", "name": "nutella pbased_beauty.jpg", "width": 300, "height": 168, "mime_type": "image/jpeg", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\220\\\\nutella pbased_beauty_297c36f39e99d4408389766544b3cf317e95886c.jpg", "content_size": 6538, "unit_of_size": "BYTES", "content_checksum": "ec5144fe641216b55573e5c76c0367cf", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_state_user_id": "2792", "master_content_info": {"id": "297c36f39e99d4408389766544b3cf317e95886c", "url": "/otmmapi/v6/renditions/297c36f39e99d4408389766544b3cf317e95886c", "name": "nutella pbased_beauty.jpg", "width": 300, "height": 168, "mime_type": "image/jpeg", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\220\\\\nutella pbased_beauty_297c36f39e99d4408389766544b3cf317e95886c.jpg", "content_size": 6538, "unit_of_size": "BYTES", "content_checksum": "ec5144fe641216b55573e5c76c0367cf", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "delivery_service_url": "https://ppr.dam.ferrero.com/adaptivemedia/rendition?id=c8c5e34bc384c3dcc5fe06b91b6e0cfec2786f77", "product_associations": false, "security_policy_list": [{"id": 5467, "name": "Marketing Viewer", "status": "NORMAL", "created_by": "1003", "create_date": "2023-10-06T16:52:07.297+02:00", "description": "Marketing Viewer", "ownership_type": "PUBLIC"}], "thumbnail_content_id": "200f1d3604a24a25afeb24df3c03ad51c63449cc", "content_state_user_id": "1003", "content_state_user_name": "OTMM BusinessAdmin", "asset_lock_state_user_id": "2792", "metadata_state_user_name": "adminuser N/A", "access_control_descriptor": {"permissions_map": {"entry": [{"key": "text.securityPolicy.permission.Custom04Permission", "value": true}, {"key": "text.securityPolicy.permission.ContentEditPermission", "value": true}, {"key": "text.securityPolicy.permission.AssetViewPermission", "value": true}, {"key": "text.securityPolicy.permission.ProjectViewPermission", "value": true}, {"key": "text.securityPolicy.permission.MembershipEditPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom03Permission", "value": true}, {"key": "text.securityPolicy.permission.MetaDataEditPermission", "value": true}, {"key": "text.securityPolicy.permission.EditParentsPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom02Permission", "value": true}, {"key": "text.securityPolicy.permission.ExportPermission", "value": true}, {"key": "text.securityPolicy.permission.SummaryViewPermission", "value": true}, {"key": "text.securityPolicy.permission.PreviewViewPermission", "value": true}, {"key": "text.securityPolicy.permission.SubscribePermission", "value": true}, {"key": "text.securityPolicy.permission.DeleteAssetPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom01Permission", "value": true}]}}, "content_lock_state_user_id": "1003", "asset_state_last_update_date": "2025-11-05T19:26:18.707+01:00", "content_lock_state_user_name": "bizAdmin", "metadata_lock_state_user_name": "adminuser", "content_state_last_update_date": "2025-11-03T12:14:42.037+01:00", "inherited_metadata_collections": [{"container_id": "50e4b3e99601b02fda1162b949073a158c06a427", "container_name": "00. Master Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "50e4b3e99601b02fda1162b949073a158c06a427", "originator_id": "50e4b3e99601b02fda1162b949073a158c06a427", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00. Master Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "container_name": "CONTENT SCALING 1234", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CONTENT SCALING 1234"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000564"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CONTENT_SCALING_12_JV_LA_MLT_NUT_0000564"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local adaptation of global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000138"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Brand", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Market", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2024/2025"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2792"}, "display_value": "N/A, adminuser (adminuser, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2792"}, "display_value": "N/A, adminuser (adminuser, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2792"}, "display_value": "N/A, adminuser (adminuser, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2792"}, "display_value": "N/A, adminuser (adminuser, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "A3"}, "display_value": "Localized Asset received from Agency", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "54ace5951af483836f95b6d4c69759d10e1eb12f", "container_name": "02.Campaigns", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "54ace5951af483836f95b6d4c69759d10e1eb12f", "originator_id": "54ace5951af483836f95b6d4c69759d10e1eb12f", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "02.Campaigns"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "container_name": "01.Standard", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "originator_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "01.Standard"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "container_name": "01.Poland", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "originator_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "01.Poland"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "container_name": "PL", "container_type_id": "GLOBALMARKETUNIT", "container_type_name": "L6 - MARKET UNIT", "inherited_metadata_values": [{"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "b94dd71b732e3c1df6ae63216c53d4d4b0e7f002"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E39"}, "display_value": "POLAND", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "container_name": "01. PL - Nutella", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "5efe2981e6f9afca7ed3fc91a171f02162ef23e3"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E008"}, "display_value": "POLAND", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0de507c8b9d1f5942b6376b6c2a2b3ec1097e42e"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "5353bb35177d792b073acc634e010df2908fde32", "container_name": "EU", "container_type_id": "GEOGRAPHYLOCAL", "container_type_name": "L4 - GEOGRAPHY LOCAL", "inherited_metadata_values": [{"id": "FERRERO.MARKET.FOLDER.GLOBAL", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "4c4d4bf36bf8b1ace55f990e78d6332a9cb20990"}, "metadata_element": {"id": "FERRERO.MARKET.FOLDER.GLOBAL", "name": "Global/Local (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "LOCAL"}, "display_value": "Local", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local (Marketing)", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "GLOBALLOCAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_AREA", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "3dc200c993ab8263952dc6da1498026f615f45dd"}, "metadata_element": {"id": "MARKETING_AREA", "name": "AREA", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E010"}, "display_value": "EUROPE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "AREA", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "AREA", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "AREA", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "dc7749c3e113ec9e0b9e9a3840ea55673ca5e49f"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "f2d658a3829c2ea158ae70a4b4e7928bcf88f8e2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "container_name": "Nutella", "container_type_id": "GLOBALBRAND", "container_type_name": "L3 - BRAND", "inherited_metadata_values": [{"id": "FERRERO.TABULAR.NEW.BRAND", "tabular": true, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "9bb1c183135f5240f09132aef59c4ea48c762381"}, "metadata_element": {"id": "FERRERO.TABULAR.NEW.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF30"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND (Marketing)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF30"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "BRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TABULAR_BRAND", "column_name": "BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.NEW.BRAND", "parent_table_name": "BRAND (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "tabular": true, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "a37b13c02cba799378211e17b73234a0d836f9b6"}, "metadata_element": {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "JV"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND(HARMONIZED)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "JV"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.HARMONIZEDBRAND", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_HARMONIZEDBRAND", "column_name": "HARMONIZEDBRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.HARMONIZEDBRAND", "parent_table_name": "BRAND(HARMONIZED)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "container_name": "01. Nutella Core", "container_type_id": "GLOBALSUBCATEGORY", "container_type_name": "L2 - SUBCATEGORY", "inherited_metadata_values": [{"id": "MARKETING_SUBCATEGORY", "tabular": false, "value_id": {"uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "originator_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "inherited_field_id": "3000ad591e09b5c75f85fc2ccbb9ebeb31b3ab78"}, "metadata_element": {"id": "MARKETING_SUBCATEGORY", "name": "SUBCATEGORY", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Mart-Nutella-Core"}, "display_value": "Nutella Core", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "SUBCATEGORY", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "SUBCATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "SUBCATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "tabular": true, "value_id": {"uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "originator_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "inherited_field_id": "2c751ce760d88c0e271925ea5149348106944bfa"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Subcategory Owner", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_SUBCATEGORY_OWNER_TM", "column_name": "SUBCATEGORY_OWNER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "parent_table_name": "Subcategory Owner", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "container_name": "Nutella", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "originator_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E04"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "dbef1c50275e771c31a26fc1f9ecf4e286907349", "container_name": "00. Master Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "dbef1c50275e771c31a26fc1f9ecf4e286907349", "originator_id": "dbef1c50275e771c31a26fc1f9ecf4e286907349", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00. Master Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "container_name": "CONTENT SCALING 12345", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "originator_id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CONTENT SCALING 12345"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "originator_id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "originator_id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "originator_id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "originator_id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "originator_id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local adaptation of global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "originator_id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "originator_id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Brand", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "originator_id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Market", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "originator_id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2024/2025"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "originator_id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "originator_id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "originator_id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "A4"}, "display_value": "Localization completed", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "4c1c7f196a1c3ed92b46d235cb565892ef92e843", "container_name": "00. Master Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "4c1c7f196a1c3ed92b46d235cb565892ef92e843", "originator_id": "4c1c7f196a1c3ed92b46d235cb565892ef92e843", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00. Master Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "container_name": "CONTENT SCALING OLIVER TEST 3", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CONTENT SCALING OLIVER TEST 3"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000551"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CONTENT_SCALING_OLI_JV_LA_DE_NUT_0000551"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local adaptation of global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000068"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Brand", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Market", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2025/2026"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2821"}, "display_value": "N/A, Krithiha (Krithiha, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2821"}, "display_value": "N/A, Krithiha (Krithiha, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2821"}, "display_value": "N/A, Krithiha (Krithiha, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2821"}, "display_value": "N/A, Krithiha (Krithiha, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "A1"}, "display_value": "Local Campaign ready for localization", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "f389599295d557119a440c04d15b17f1b6e59107", "container_name": "Campaigns", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "f389599295d557119a440c04d15b17f1b6e59107", "originator_id": "f389599295d557119a440c04d15b17f1b6e59107", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Campaigns"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "container_name": "DE", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "originator_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "inherited_field_id": "5efe2981e6f9afca7ed3fc91a171f02162ef23e3"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E006"}, "display_value": "GERMANY", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "originator_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Local DE Editable Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "originator_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Nutella Local DE Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "originator_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "originator_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "inherited_field_id": "0de507c8b9d1f5942b6376b6c2a2b3ec1097e42e"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E64"}, "display_value": "GERMANY", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "originator_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local comm on global brands"}, "display_value": "Local comm on global brands", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local comm on global brands"}, "display_value": "Local comm on global brands", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "251d8b8f1089c9f08cf282832453f0f6ccca00f1", "container_name": "05. Final Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "251d8b8f1089c9f08cf282832453f0f6ccca00f1", "originator_id": "251d8b8f1089c9f08cf282832453f0f6ccca00f1", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "05. Final Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "container_name": "NUTELLA PLANT-BASED LAUNCH", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA PLANT-BASED LAUNCH"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000068"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "GL_FY25_NUT_30_NUTELLA_PLANT_00068"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Brand", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Market", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Global comm024/2025"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2821"}, "display_value": "N/A, Krithiha (Krithiha, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2821"}, "display_value": "N/A, Krithiha (Krithiha, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2821"}, "display_value": "N/A, Krithiha (Krithiha, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2821"}, "display_value": "N/A, Krithiha (Krithiha, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "B2"}, "display_value": "Master campaign received from Agency", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "container_name": "Global", "container_type_id": "GEOGRAPHYGLOBAL", "container_type_name": "L4 - GEOGRAPHY GLOBAL", "inherited_metadata_values": [{"id": "FERRERO.MARKET.FOLDER.GLOBAL", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "963db123044a8d3ff5d8f4aac56d35df77a7656c"}, "metadata_element": {"id": "FERRERO.MARKET.FOLDER.GLOBAL", "name": "Global/Local (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "GLOBAL"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local (Marketing)", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "GLOBALLOCAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_AREA", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "3a37ace6a53a93799e0e18773ba6c7e70305cc78"}, "metadata_element": {"id": "MARKETING_AREA", "name": "AREA", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AREA", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "AREA", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "AREA", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "9f64f884b41d2a8445f4d9cd60714e91024e8b13"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Global Editable Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "8847a6dfbebcf323a8170649b390af1a375c08b8"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Nutella Global Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "758e614412f11ecb58446966d328974daf253446"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "53df9e81ae46cf6bd2440643426224b1fb904aeb"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "name": "Published Security Policy - Restricted Visibility", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Global Published Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Security Policy - Restricted Visibility", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_VISIBILITY_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "0fbcf70c95f5d28645e7a6187f7c429d62e60380"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Global comm"}, "display_value": "Global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Global comm"}, "display_value": "Global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "container_name": "Oliver Sharing", "container_type_id": "L3 - Agency Structure", "container_type_name": "L3 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "55530f721f18c847e35d7c828edf53461b5014b0"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "330bb6f68316aab5c45f9fe34e047cce573c67cc"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "name": "Agency Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "AGENCY_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "e30e90d694f9935d4c15c4c78891beed8853a272"}, "metadata_element": {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "name": "Published Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "PUBLISHED_ASSET_SP_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "23b155c32d5c6142914b41458234c100812bbec8", "container_name": "Oliver", "container_type_id": "L2 - Agency Structure", "container_type_name": "L2 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.AGENCY", "tabular": false, "value_id": {"uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "originator_id": "23b155c32d5c6142914b41458234c100812bbec8", "inherited_field_id": "48fcbc397986aca5bb8722a95197dd0a46f19b4e"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_AGENCY", "column_name": "AGENCY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "container_name": "Z - Exchange", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "YY"}, "display_value": "AGENCIES", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}], "asset_lock_state_last_update_date": "2025-11-05T19:26:19.133+01:00", "content_lock_state_last_update_date": "2025-11-03T12:14:42.063+01:00"}, "language_code": null, "language_name": null, "subject_title": null, "file_extension": ".jpg", "asset_type_name": null, "file_size_bytes": null, "duration_seconds": null, "upload_directory": "89fa66f966144467721d6829db4d88d25ac026b1", "local_campaign_id": "C000000551", "original_filename": "nutella pbased_beauty", "global_master_folder_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "global_master_campaign_id": "C000000068"} 2025-11-05 22:14:28.65811 \N 3 7xXgKp master_asset_created {"id": 3, "tags": null, "status": "active", "width_px": null, "height_px": null, "mime_type": "image/jpeg", "asset_type": null, "brand_code": null, "brand_name": null, "categories": null, "created_at": "2025-11-13T17:07:53.487139", "deleted_at": null, "is_deleted": false, "updated_at": "2025-11-13T17:07:53.487139", "description": "Cloned for testing - Tracking ID: 7xXgKp", "ingested_at": "2025-11-13T17:07:53.487139", "ingested_by": null, "opentext_id": "747110b96dede761a445a3bf0c90f13bb38024fa", "tracking_id": "7xXgKp", "aspect_ratio": null, "country_code": null, "country_name": null, "full_metadata": {"name": "nutella pbased.jpg", "links": {"links": [], "source_id": "747110b96dede761a445a3bf0c90f13bb38024fa"}, "locked": false, "deleted": false, "expired": false, "version": 1, "asset_id": "747110b96dede761a445a3bf0c90f13bb38024fa", "metadata": {"id": "ECOMMERCE", "name": "Marketing Asset", "type": "com.artesia.metadata.MetadataModel", "legacy_id": 116, "metadata_element_list": [{"id": "FERRERO.CATEGORY.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200054, "metadata_element_list": []}, {"id": "FERRER.CATEGORY.ASSET_INFO", "name": "Asset Info", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200022, "metadata_element_list": [{"id": "FERRERO.FIELD.FISCAL YEAR", "name": "Release Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2024/2025"}, "display_value": "2024/2025", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Release Fiscal Year", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_DOMAIN_FISCAL_YEAR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "FISCAL__YEAR", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "name": "Main Languages", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1210, "metadata_element_list": [{"id": "MAIN_LANGUAGES", "name": "MAIN LANGUAGES", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "MAIN LANGUAGES", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MAIN LAGUAGES_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MAIN_LANGUAGE_TABLE", "column_name": "MAIN_LANGUAGE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "parent_table_name": "Main Languages", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.ASSET DESCRIPTION", "name": "Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Description", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "DESCR", "data_length": 249, "description": "Descriptive information", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.FLAVOUR", "name": "Flavour", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Flavour", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.FLAVOUR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FLAVOUR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.SIZE", "name": "Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Size", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.SIZE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SIZE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1241, "metadata_element_list": [{"id": "FERRERO.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Compliance", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ASSETCOMPLIANCE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_COMPLIANCE", "column_name": "ASSET_COMPLIANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "parent_table_name": "Asset Compliance", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.TAG DETAILS", "name": "Tag Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 118, "metadata_element_list": [{"id": "ARTESIA.FIELD.TAG", "name": "Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "food", "field_value": {"type": "string", "value": "food"}, "display_value": "food", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Tag", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "food", "field_value": {"type": "string", "value": "food"}, "display_value": "food", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "fruit preserve", "field_value": {"type": "string", "value": "fruit preserve"}, "display_value": "fruit preserve", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "preserved food", "field_value": {"type": "string", "value": "preserved food"}, "display_value": "preserved food", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "condiment", "field_value": {"type": "string", "value": "condiment"}, "display_value": "condiment", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "mason jar", "field_value": {"type": "string", "value": "mason jar"}, "display_value": "mason jar", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "canning", "field_value": {"type": "string", "value": "canning"}, "display_value": "canning", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "food storage containers", "field_value": {"type": "string", "value": "food storage containers"}, "display_value": "food storage containers", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "sauces", "field_value": {"type": "string", "value": "sauces"}, "display_value": "sauces", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "lekvar", "field_value": {"type": "string", "value": "lekvar"}, "display_value": "lekvar", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "pickling", "field_value": {"type": "string", "value": "pickling"}, "display_value": "pickling", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "food storage", "field_value": {"type": "string", "value": "food storage"}, "display_value": "food storage", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "healthy", "field_value": {"type": "string", "value": "healthy"}, "display_value": "healthy", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "jam", "field_value": {"type": "string", "value": "jam"}, "display_value": "jam", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "ingredient", "field_value": {"type": "string", "value": "ingredient"}, "display_value": "ingredient", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "sauce", "field_value": {"type": "string", "value": "sauce"}, "display_value": "sauce", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "seasoning", "field_value": {"type": "string", "value": "seasoning"}, "display_value": "seasoning", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "bottle", "field_value": {"type": "string", "value": "bottle"}, "display_value": "bottle", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "honey", "field_value": {"type": "string", "value": "honey"}, "display_value": "honey", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.TAGS", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "OTMM_TAGS", "column_name": "TAG", "data_length": 80, "description": "Tag", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG CONFIDENCE", "name": "Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 89.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Confidence", "values": [{"value": {"type": "decimal", "value": 89.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 89.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 89.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 86.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 73.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 73.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 70.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 70.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 66.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 64.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 60.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 58.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 57.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 57.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 56.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 52.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 52.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 5.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Confidence", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG TYPE", "name": "Tag Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Tag Type", "values": [{"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "TAG_TYPE", "data_length": 10, "description": "Tag Type", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED BY", "name": "Associated By", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Associated By", "values": [{"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_BY", "data_length": 10, "description": "Associated By", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED DATE", "name": "Associated Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.607+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Associated Date", "values": [{"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.607+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.607+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.607+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.607+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.61+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.61+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.61+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.61+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.61+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.61+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.61+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.61+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.61+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.61+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.61+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.61+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.61+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.61+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_DATE", "data_length": 10, "description": "Associated Date", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.STATE", "name": "Global/Local", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "GLOBAL"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO_NOTNULL", "facetable": true, "searchable": true, "table_name": "FERRERO_IC_ASSET_DETAILS", "column_name": "ASSET_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.ASPECT RATIO", "name": "Aspect Ratio (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio (Marketing)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASPECT_RATIO", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASPECT_RATIO", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "name": "Tag (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1222, "metadata_element_list": [{"id": "MARKETING_TAG", "name": "Marketing Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Marketing Tag", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.DOMAIN.TAG", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TAG_MARKET", "column_name": "TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "parent_table_name": "Tag (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.TAGS", "name": "Auto-Generated Tags", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Auto-Generated Tags", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "AUTO_GENERATED_TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CERTIFIER", "name": "Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approver", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.MARKETING.FIELD.APPROVAL DATE", "name": "Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.CERTIFIER COMMENT", "name": "Approver Comment", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approver Comment", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "CERTIFIER_COMMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.LEGAL CERTIFER", "name": "Legal Certifier", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "User, Legal IA&CC (Local Legal IA&CC, active)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal Certifier", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "LEGAL_CERTIFIER_MARKETING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.LEGAL APPROVAL DATE", "name": "Legal Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-11-05T00:00:00+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.LEGAL COMMENT", "name": "Legal Comment", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": ", "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal Comment", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_COMMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CERTIFIER", "name": "IA&CC Certifier", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "User, Legal IA&CC (Local Legal IA&CC, active)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Certifier", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CC APPROVAL DATE", "name": "IA&CC Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-11-05T00:00:00+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CC COMMENT", "name": "IA&CC Comment", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "c8c5e34bc384c3dcc5fe06b91b6e0cfec2786f77=#SPLIT#43009b2ba8204f56f4b38a31a53aea735ade049f="}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Comment", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_COMMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "name": "Extended Approval", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1230, "metadata_element_list": [{"id": "FERRERO.FIELD.EXTENDED.APPROVAL", "name": "Extended Approval required by:", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended Approval required by:", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COMMENTS", "name": "Comment", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comment", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "COMMENTS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.DATE", "name": "Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USERS", "name": "User ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "User ID", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "USERS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXTENDED.JOBID", "name": "Extended JobID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended JobID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.MIGRATION.INDEX", "name": "Migration Index", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Migration Index", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MIGRATION.INDEX", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MIGRATION_INDEX", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "FERRERO_MARKET_MARKETING_CREATOR", "name": "Marketing Creator", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Marketing Creator", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.CREATOR", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MARKETING_CREATOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "ARTESIA.FIELD.IS LATEST VERSION", "name": "Is Latest Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Y"}, "display_value": "Yes", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Is Latest Version", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.YES_NO", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "IS_LATEST_VERSION", "data_length": 1, "description": "Is this the latest version? (Y/N)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET VERSION", "name": "Asset Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 1}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Version", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "INTEGER", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "VERSION", "data_length": 12, "description": "Version number of asset", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET_ID", "name": "Asset ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "747110b96dede761a445a3bf0c90f13bb38024fa"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset ID", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "LOGICAL_UOI_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.ECOMMERCE STATUS", "name": "Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "TO BE APPROVED"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Status", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "ASSET_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CREATOR", "name": "Uploaded by", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Uploaded by", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_USER_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.FIELD.CREATION DATE", "name": "Upload Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-10-31T16:39:58.037+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Upload Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_DT", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.ASSET NAME", "name": "Asset Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "nutella pbased.jpg"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Name", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "description": "Original name of master object", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.CONTENT TYPE", "name": "Content Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "BITMAP"}, "display_value": "Image", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Type", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.CONTENT_TYPES", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "CONTENT_TYPE", "data_length": 8, "description": "Content Type", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.MIME TYPE", "name": "File Extension", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "image/jpeg"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Extension", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_MIME_TYPE", "data_length": 80, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.FILE.SIZE", "name": "File Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "long", "value": 5000}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Size", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "LONG", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_SIZE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP RESOLUTION", "name": "Bitmap Resolution", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 72}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Resolution", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_RESOLUTION", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP WIDTH", "name": "Bitmap Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 203}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Width", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_WIDTH", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP HEIGHT", "name": "Bitmap Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 249}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Height", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_HEIGHT", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.VIDEO.BIT_RATE", "name": "Bitrate", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitrate", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "BIT_RATE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.EMBEDDED.FIELD.DURATION", "name": "Duration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Duration", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "DURATION_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.ASPECT RATIO", "name": "Aspect Ratio", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "ASPECT_RATIO", "data_length": 30, "displayable": false, "instructions": "ASPECT_RATIO", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME HEIGHT", "name": "Frame Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Height", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_HEIGHT", "data_length": 12, "displayable": true, "instructions": "FRAME_HEIGHT", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME WIDTH", "name": "Frame Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Width", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_WIDTH", "data_length": 12, "displayable": true, "instructions": "FRAME_WIDTH", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.ASPECT.RATIO.POC", "name": "Aspect Ratio(POC)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "4:5"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio(POC)", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASPECT_RATIO_TABLE", "column_name": "ASPECT_RATIO", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "PRODUCT.DETAILS", "name": "Product Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200029, "metadata_element_list": [{"id": "FERRERO.TABLE.EANCODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1208, "metadata_element_list": [{"id": "EAN_CODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "EAN CODE/ 77 CODE", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "EAN.CODE", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "EAN_CODE", "column_name": "EAN_CODE_DESCRIPTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "COUNTRY", "name": "COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "EAN_CODE", "column_name": "COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.SUB BRAND", "name": "Sub-Brands", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Sub-Brands", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.SUBBRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "SUB_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT WEIGHT", "name": "Product Weight", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Weight", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_WEIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.CONSUMER UNIT PACKAGING", "name": "Consumer Unit Packaging", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Consumer Unit Packaging", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PACK", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "CONSUMER_UNIT_PACKAGING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.4 DIGIT CODE", "name": "4 Digit Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "4 Digit Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "DIGITCODE", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERREO.ECOM.RETAILER_SPECIFIC_FIELD", "name": "Retailer Specific", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Retailer Specific", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "RETAILER_SPECIFIC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "cascading_group_id": "FERRERO.RETAILER.SPECIFIC", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY END PERIOD", "name": "Asset validity end period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity end period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_ENDING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT VIEW", "name": "Product View", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product View", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT VIEW", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_VIEW", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT ANGLE", "name": "Product Angle", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Angle", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT.ANGLE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_ANGLE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT STATE", "name": "Product State", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product State", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT STATE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PROMOTION ID", "name": "Promo ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Promo ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROMO_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200048, "metadata_element_list": []}, {"id": "FERRERO.FIELD.CREATIX", "name": "CreativeX", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200059, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.CREATIVEX", "name": "Confidence", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1245, "metadata_element_list": [{"id": "FERRERO.TAB.FIELD.CREATIVEX", "name": "Platform > Rating (%)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Platform > Rating (%)", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_CREATIVEX", "column_name": "CREATIVEX_NEW", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CREATIVEX", "parent_table_name": "Confidence", "cascading_group_id": "FERRERO.CREATIVEX.CHAR", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.CREATIVEX LINK", "name": "CreativeX Hyperlink", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "CreativeX Hyperlink", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_CREATIVEX", "column_name": "CREATIVE_LINK", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.IP_RIGHTS", "name": "IP Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200046, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.IPRIGHT", "name": "IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "IP Rights", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.IPRIGHTS", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IP_RIGHTS", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.BUYOUT", "name": "Touchpoint Scope", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Touchpoint Scope", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.TOTAL_BUYOUT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TOTAL_BUYOUT", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.FERRERO PROPERTY", "name": "Ferrero Property", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Ferrero Property", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.FERRERO_PROPERTY", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FERRERO_PROPERTY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200035, "metadata_element_list": []}, {"id": "FERRERO.MARKET.VID_STAT_RIGHT", "name": "Video & Static Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200047, "metadata_element_list": [{"id": "FERRERO.MARKET.VID_N_STAT", "name": "Video and Static Right", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Video and Static Right", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VID_AND_STAT_RIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.VID_STAT_TYPE", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1221, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.TYPE_VID", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Video & Static Right", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TYPE_VID_STAT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_MARKET_TYPE_VID_STAT", "column_name": "TYPE_OF_VIDEO_STATIC_RIGHT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.VID_STAT_TYPE", "parent_table_name": "Type of Video & Static Right", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKET.PROD_COMPANY", "name": "Production House", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Production House", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.PRODUCT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200050, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.LICENSIN", "name": "Licensing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Licensing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSING", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "cascading_group_id": "FERRERO.MARKET.CG.LICENSE", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.SPOT_DETAILS", "name": "Spot Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200049, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.SPOT_VERSION", "name": "Spot Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Version", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_VERSION", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_VERSION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.SPOT_TYPE", "name": "Spot Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_TYPE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.DIRECTOR_NAME", "name": "Director Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Director Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "DIRECTOR_NAME", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VIDEO_POST_PROD_COMPANY", "name": "Video Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VID_POST_PROD_CONTACT", "name": "Video Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_COMPANY", "name": "Audio Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_CONTACT", "name": "Audio Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.BROADCASTER.CODE", "name": "Broadcaster Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Broadcaster Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BROADCASTER_CODE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.TECHNICAL_VALIDATION", "name": "Technical Validation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Technical Validation", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TECHNICAL_VALIDATION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS", "name": "Media Analysis", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1002, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES COUNT", "name": "Faces Count", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Faces Count", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACECOUNT", "column_name": "COUNT", "data_length": 10, "description": "Faces Count", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "name": "Face Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 106, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME", "name": "Recognized Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME", "data_length": 2000, "description": "Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME CONFIDENCE", "name": "Recognized Name Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME_CONFIDENCE", "data_length": 10, "description": "Name Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE", "name": "Person Age", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE", "data_length": 10, "description": "Person Age", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE CONFIDENCE", "name": "Person Age Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Person Age Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_CONFIDENCE", "data_length": 10, "description": "Person Age Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER", "name": "Gender", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Gender", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.GENDER", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER", "data_length": 40, "description": "Gender", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER CONFIDENCE", "name": "Gender Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Gender Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER_CONFIDENCE", "data_length": 10, "description": "Gender Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.FACE COORDS", "name": "Face Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "FACE_COORDS", "data_length": 200, "description": "Face Coordinates like postion, height,width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE GROUP", "name": "Person Age Group", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age Group", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.AGE GROUP", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_GROUP", "data_length": 10, "description": "Person Age Group", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.ISBW", "name": "Is Black and White", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "false"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Is Black and White", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "ISBW", "data_length": 10, "description": "Is Black and White", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "name": "Image Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 110, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.IMAGE TYPE", "name": "Analysis Image Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "clip_art"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Analysis Image Type", "values": [{"value": {"type": "string", "value": "clip_art"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_IMAGE_TYPE", "column_name": "TYPE", "data_length": 100, "description": "Image Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "parent_table_name": "Image Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.DATE", "name": "Date: Media Analysis", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date: Media Analysis", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MEDIA_ANALYSIS_DATE", "data_length": 25, "description": "Date Media Analysis was done on the asset.", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false}]}, {"id": "HYBRIS.PRODUCT.INFO", "name": "PIM Item Reference", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200027, "metadata_element_list": [{"id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "name": "Hybris Item Reference", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1206, "metadata_element_list": [{"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ID", "name": "Hybris Item ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ID", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT TAG NAME", "name": "Hybris Assignment Label", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Assignment Label", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_TAG_NAME", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ATTRIBUTE NAME", "name": "Hybris Attribute Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Attribute Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ATTRIBUTE_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT CATALOG NAME", "name": "Hybris Catalog Mnemonic", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Catalog Mnemonic", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_CATALOG_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT PK", "name": "Hybris Item PK", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item PK", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_PK", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.SYSTEM ID", "name": "Hybris System ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris System ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "SYSTEM_ID", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.ASSIGNED", "name": "Assigned", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Assigned", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "ASSIGNED", "column_name": "ASSIGNED", "data_length": 38, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PIM TYPE", "name": "PIM Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "PIM Type", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_PIM_TYPE", "column_name": "PIM_TYPE", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS VIDEO", "name": "Media Analysis Video", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1003, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "name": "Labels", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 113, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.ID", "name": "Label Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "ID", "data_length": 40, "description": "Label Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.NAME", "name": "Label Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "NAME", "data_length": 40, "description": "Label Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.APPEARANCES", "name": "Label Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "APPEARANCES", "data_length": 0, "description": "Label Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "name": "Sentiments", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 114, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.ID", "name": "Sentiment Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "ID", "data_length": 40, "description": "Sentiment Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.NAME", "name": "Sentiment Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "NAME", "data_length": 40, "description": "Sentiment Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.APPEARANCES", "name": "Sentiment Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "APPEARANCES", "data_length": 0, "description": "Sentiment Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.SEEN.DURATION.RATIO", "name": "Sentiment Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Sentiment Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "name": "Keywords", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 115, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.ID", "name": "Keyword Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "ID", "data_length": 40, "description": "Keyword Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.NAME", "name": "Keyword Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "NAME", "data_length": 40, "description": "Keyword Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.APPEARANCES", "name": "Keyword Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Keyword Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "name": "Faces", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 111, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.ID", "name": "Face Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "ID", "data_length": 40, "description": "Face Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.NAME", "name": "Face Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "NAME", "data_length": 40, "description": "Face Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.TITLE", "name": "Face Title", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Title", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "TITLE", "data_length": 249, "description": "Face Title", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.DESCRIPTION", "name": "Face Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Face Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.APPEARANCES", "name": "Face Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "APPEARANCES", "data_length": 0, "description": "Face Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SPEAKER.FACE.ID", "name": "Video Speaker Object Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Speaker Object Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "THUMBNAIL_OBJECT_ID", "data_length": 40, "description": "Video Speaker Object Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.SEEN.DURATION.RATIO", "name": "Face Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "SEEN_DURATION_RATIO", "data_length": 20, "description": "Face Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "name": "Brands", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 112, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.ID", "name": "Video Brand Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "ID", "data_length": 40, "description": "Brand Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.NAME", "name": "Video Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Brand Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.DESCRIPTION", "name": "Video Brand Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Brand Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.WIKIURL", "name": "Video Brand Wiki URL", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Wiki URL", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "WIKIURL", "data_length": 200, "description": "Brand Wiki URL", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.APPEARANCES", "name": "Video Brand Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Brand Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.SEEN.DURATION.RATIO", "name": "Video Brand Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Brand Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "name": "Speeches", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 116, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.ID", "name": "SpeechText Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "SpeechText Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "ID", "data_length": 40, "description": "SpeechText Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXT", "name": "Speech Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Text", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXT", "data_length": 1000, "description": "Speech Text", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXTTYPE", "name": "Speech Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXTTYPE", "data_length": 40, "description": "Speech Type", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.START TIME", "name": "Speech Start Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Start Time", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "START_TIME", "data_length": 40, "description": "Speech Start Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.END TIME", "name": "Speech End Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech End Time", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "END_TIME", "data_length": 40, "description": "Speech End Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "name": "Speakers", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 122, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.ID", "name": "Speaker Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "ID", "data_length": 40, "description": "Speaker Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.NAME", "name": "Speaker Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "NAME", "data_length": 100, "description": "Speaker Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.APPEARANCES", "name": "Speaker Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "APPEARANCES", "data_length": 0, "description": "Speaker Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.FIELDGROUP.LOCALASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200057, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1239, "metadata_element_list": [{"id": "FERRERO.FIELD.COUNTRY", "name": "LOCAL COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "LOCAL COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USER", "name": "USER", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "USER", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_USER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.ASSOCIATION", "name": "TYPE OF ASSOCIATION", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "TYPE OF ASSOCIATION", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_ASSOCIATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.VALUE", "name": "VALUE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "VALUE", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_VALUE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}], "has_multilingual_fields": false}, "mime_type": "image/jpeg", "path_list": [{"parents": [{"id": "50e4b3e99601b02fda1162b949073a158c06a427", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "50e4b3e99601b02fda1162b949073a158c06a427", "sequence_number": 0}, {"id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "name": "CONTENT SCALING 1234", "container_state": "NORMAL", "original_uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "sequence_number": 0}, {"id": "54ace5951af483836f95b6d4c69759d10e1eb12f", "name": "02.Campaigns", "container_state": "NORMAL", "original_uoi_id": "54ace5951af483836f95b6d4c69759d10e1eb12f", "sequence_number": 0}, {"id": "1638869b9b347c39842effc7e5ff965de47e8e65", "name": "01.Standard", "container_state": "NORMAL", "original_uoi_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "sequence_number": 0}, {"id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "name": "01.Poland", "container_state": "NORMAL", "original_uoi_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "sequence_number": 0}, {"id": "341bbf240ea033435cc225cd1add5c009bc067d7", "name": "PL", "container_state": "NORMAL", "original_uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "sequence_number": 0}, {"id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "name": "01. PL - Nutella", "container_state": "NORMAL", "original_uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "sequence_number": 0}, {"id": "5353bb35177d792b073acc634e010df2908fde32", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "0c30edd40569bc215307f7215ab86cbd8fac163b", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "0c30edd40569bc215307f7215ab86cbd8fac163b", "sequence_number": 0}, {"id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "name": "CONTENT SCALING XX", "container_state": "NORMAL", "original_uoi_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "sequence_number": 0}, {"id": "54ace5951af483836f95b6d4c69759d10e1eb12f", "name": "02.Campaigns", "container_state": "NORMAL", "original_uoi_id": "54ace5951af483836f95b6d4c69759d10e1eb12f", "sequence_number": 0}, {"id": "1638869b9b347c39842effc7e5ff965de47e8e65", "name": "01.Standard", "container_state": "NORMAL", "original_uoi_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "sequence_number": 0}, {"id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "name": "01.Poland", "container_state": "NORMAL", "original_uoi_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "sequence_number": 0}, {"id": "341bbf240ea033435cc225cd1add5c009bc067d7", "name": "PL", "container_state": "NORMAL", "original_uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "sequence_number": 0}, {"id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "name": "01. PL - Nutella", "container_state": "NORMAL", "original_uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "sequence_number": 0}, {"id": "5353bb35177d792b073acc634e010df2908fde32", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "4c1c7f196a1c3ed92b46d235cb565892ef92e843", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "4c1c7f196a1c3ed92b46d235cb565892ef92e843", "sequence_number": 0}, {"id": "0782f78ca6fe95281660f0299a8a28c526628c95", "name": "CONTENT SCALING OLIVER TEST 3", "container_state": "NORMAL", "original_uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "sequence_number": 0}, {"id": "f389599295d557119a440c04d15b17f1b6e59107", "name": "Campaigns", "container_state": "NORMAL", "original_uoi_id": "f389599295d557119a440c04d15b17f1b6e59107", "sequence_number": 0}, {"id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "name": "DE", "container_state": "NORMAL", "original_uoi_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "sequence_number": 0}, {"id": "5353bb35177d792b073acc634e010df2908fde32", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "251d8b8f1089c9f08cf282832453f0f6ccca00f1", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "251d8b8f1089c9f08cf282832453f0f6ccca00f1", "sequence_number": 0}, {"id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "name": "NUTELLA PLANT-BASED LAUNCH", "container_state": "NORMAL", "original_uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "sequence_number": 0}, {"id": "413c776f4416163b88737d53bb72dfe23bfd2430", "name": "Global", "container_state": "NORMAL", "original_uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "50e4b3e99601b02fda1162b949073a158c06a427", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "50e4b3e99601b02fda1162b949073a158c06a427", "sequence_number": 0}, {"id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "name": "Oliver Sharing", "container_state": "NORMAL", "original_uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "sequence_number": 0}, {"id": "23b155c32d5c6142914b41458234c100812bbec8", "name": "Oliver", "container_state": "NORMAL", "original_uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "sequence_number": 0}, {"id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "name": "Z - Exchange", "container_state": "NORMAL", "original_uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "4c1c7f196a1c3ed92b46d235cb565892ef92e843", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "4c1c7f196a1c3ed92b46d235cb565892ef92e843", "sequence_number": 0}, {"id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "name": "Oliver Sharing", "container_state": "NORMAL", "original_uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "sequence_number": 0}, {"id": "23b155c32d5c6142914b41458234c100812bbec8", "name": "Oliver", "container_state": "NORMAL", "original_uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "sequence_number": 0}, {"id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "name": "Z - Exchange", "container_state": "NORMAL", "original_uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}], "creator_id": "1003", "asset_state": "NORMAL", "checked_out": false, "folder_path": "", "content_size": 5000, "content_type": "BITMAP", "content_state": "NORMAL", "date_imported": "2025-10-31T16:39:58.037+01:00", "import_job_id": 214972, "subscribed_to": false, "collection_ids": [], "latest_version": true, "legacy_model_id": 116, "content_editable": true, "import_user_name": "bizAdmin", "date_last_updated": "2025-11-05T12:08:52.673+01:00", "metadata_model_id": "ECOMMERCE", "original_asset_id": "747110b96dede761a445a3bf0c90f13bb38024fa", "rendition_content": {"preview_content": {"id": "a5608ee8058228c10a407fbfcc00efe0a6ebe0ef", "url": "/otmmapi/v6/renditions/a5608ee8058228c10a407fbfcc00efe0a6ebe0ef", "name": "nutella pbased-S.png", "width": 203, "height": 249, "mime_type": "image/png", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "PREVIEW", "content_path": "data\\\\repository\\\\screen\\\\vol0\\\\180\\\\nutella pbased-S_a5608ee8058228c10a407fbfcc00efe0a6ebe0ef.png", "content_size": 23906, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "thumbnail_content": {"id": "9543be3395c8f021749463e081c7915466ee847d", "url": "/otmmapi/v6/renditions/9543be3395c8f021749463e081c7915466ee847d", "name": "nutella pbased-T.png", "width": 203, "height": 249, "mime_type": "image/png", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "THUMBNAIL", "content_path": "data\\\\repository\\\\thumb\\\\vol0\\\\195\\\\nutella pbased-T_9543be3395c8f021749463e081c7915466ee847d.png", "content_size": 23906, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_content_info": {"master_content": {"id": "b89909f751facf935dceb729a141fee657575a74", "url": "/otmmapi/v6/renditions/b89909f751facf935dceb729a141fee657575a74", "name": "nutella pbased.jpg", "width": 203, "height": 249, "mime_type": "image/jpeg", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\220\\\\nutella pbased_b89909f751facf935dceb729a141fee657575a74.jpg", "content_size": 5000, "unit_of_size": "BYTES", "content_checksum": "2e5fec19952ccaac976f13f88b3ef32d", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_state_user_id": "1001", "master_content_info": {"id": "b89909f751facf935dceb729a141fee657575a74", "url": "/otmmapi/v6/renditions/b89909f751facf935dceb729a141fee657575a74", "name": "nutella pbased.jpg", "width": 203, "height": 249, "mime_type": "image/jpeg", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\220\\\\nutella pbased_b89909f751facf935dceb729a141fee657575a74.jpg", "content_size": 5000, "unit_of_size": "BYTES", "content_checksum": "2e5fec19952ccaac976f13f88b3ef32d", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "delivery_service_url": "https://ppr.dam.ferrero.com/adaptivemedia/rendition?id=747110b96dede761a445a3bf0c90f13bb38024fa", "product_associations": false, "security_policy_list": [{"id": 7534, "name": "Nutella Global Editable Nutella Core", "status": "NORMAL", "created_by": "1003", "create_date": "2023-12-15T17:39:27.973+01:00", "description": "Nutella Global Editable Nutella Core", "ownership_type": "PUBLIC"}, {"id": 11338, "name": "Oliver Editable", "status": "NORMAL", "created_by": "1003", "create_date": "2025-10-29T10:16:15.733+01:00", "description": "Oliver Editable", "ownership_type": "PUBLIC"}], "thumbnail_content_id": "9543be3395c8f021749463e081c7915466ee847d", "content_state_user_id": "1003", "content_state_user_name": "OTMM BusinessAdmin", "asset_lock_state_user_id": "1001", "metadata_state_user_name": "otmm admin", "access_control_descriptor": {"permissions_map": {"entry": [{"key": "text.securityPolicy.permission.Custom04Permission", "value": true}, {"key": "text.securityPolicy.permission.ContentEditPermission", "value": true}, {"key": "text.securityPolicy.permission.AssetViewPermission", "value": true}, {"key": "text.securityPolicy.permission.ProjectViewPermission", "value": true}, {"key": "text.securityPolicy.permission.MembershipEditPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom03Permission", "value": true}, {"key": "text.securityPolicy.permission.MetaDataEditPermission", "value": true}, {"key": "text.securityPolicy.permission.EditParentsPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom02Permission", "value": true}, {"key": "text.securityPolicy.permission.ExportPermission", "value": true}, {"key": "text.securityPolicy.permission.SummaryViewPermission", "value": true}, {"key": "text.securityPolicy.permission.PreviewViewPermission", "value": true}, {"key": "text.securityPolicy.permission.SubscribePermission", "value": true}, {"key": "text.securityPolicy.permission.DeleteAssetPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom01Permission", "value": true}]}}, "content_lock_state_user_id": "1003", "asset_state_last_update_date": "2025-11-05T12:08:52.673+01:00", "content_lock_state_user_name": "bizAdmin", "metadata_lock_state_user_name": "tsuper", "content_state_last_update_date": "2025-10-31T16:39:58.203+01:00", "inherited_metadata_collections": [{"container_id": "50e4b3e99601b02fda1162b949073a158c06a427", "container_name": "00. Master Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "50e4b3e99601b02fda1162b949073a158c06a427", "originator_id": "50e4b3e99601b02fda1162b949073a158c06a427", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00. Master Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "container_name": "CONTENT SCALING 1234", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CONTENT SCALING 1234"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000564"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CONTENT_SCALING_12_JV_LA_MLT_NUT_0000564"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local adaptation of global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000138"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Brand", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Market", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2024/2025"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2792"}, "display_value": "N/A, adminuser (adminuser, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2792"}, "display_value": "N/A, adminuser (adminuser, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2792"}, "display_value": "N/A, adminuser (adminuser, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2792"}, "display_value": "N/A, adminuser (adminuser, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "A3"}, "display_value": "Localized Asset received from Agency", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "54ace5951af483836f95b6d4c69759d10e1eb12f", "container_name": "02.Campaigns", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "54ace5951af483836f95b6d4c69759d10e1eb12f", "originator_id": "54ace5951af483836f95b6d4c69759d10e1eb12f", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "02.Campaigns"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "container_name": "01.Standard", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "originator_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "01.Standard"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "container_name": "01.Poland", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "originator_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "01.Poland"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "container_name": "PL", "container_type_id": "GLOBALMARKETUNIT", "container_type_name": "L6 - MARKET UNIT", "inherited_metadata_values": [{"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "b94dd71b732e3c1df6ae63216c53d4d4b0e7f002"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E39"}, "display_value": "POLAND", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "container_name": "01. PL - Nutella", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "5efe2981e6f9afca7ed3fc91a171f02162ef23e3"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E008"}, "display_value": "POLAND", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0de507c8b9d1f5942b6376b6c2a2b3ec1097e42e"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "5353bb35177d792b073acc634e010df2908fde32", "container_name": "EU", "container_type_id": "GEOGRAPHYLOCAL", "container_type_name": "L4 - GEOGRAPHY LOCAL", "inherited_metadata_values": [{"id": "FERRERO.MARKET.FOLDER.GLOBAL", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "4c4d4bf36bf8b1ace55f990e78d6332a9cb20990"}, "metadata_element": {"id": "FERRERO.MARKET.FOLDER.GLOBAL", "name": "Global/Local (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "LOCAL"}, "display_value": "Local", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local (Marketing)", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "GLOBALLOCAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_AREA", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "3dc200c993ab8263952dc6da1498026f615f45dd"}, "metadata_element": {"id": "MARKETING_AREA", "name": "AREA", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E010"}, "display_value": "EUROPE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "AREA", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "AREA", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "AREA", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "dc7749c3e113ec9e0b9e9a3840ea55673ca5e49f"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "f2d658a3829c2ea158ae70a4b4e7928bcf88f8e2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "container_name": "Nutella", "container_type_id": "GLOBALBRAND", "container_type_name": "L3 - BRAND", "inherited_metadata_values": [{"id": "FERRERO.TABULAR.NEW.BRAND", "tabular": true, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "9bb1c183135f5240f09132aef59c4ea48c762381"}, "metadata_element": {"id": "FERRERO.TABULAR.NEW.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF30"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND (Marketing)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF30"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "BRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TABULAR_BRAND", "column_name": "BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.NEW.BRAND", "parent_table_name": "BRAND (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "tabular": true, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "a37b13c02cba799378211e17b73234a0d836f9b6"}, "metadata_element": {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "JV"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND(HARMONIZED)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "JV"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.HARMONIZEDBRAND", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_HARMONIZEDBRAND", "column_name": "HARMONIZEDBRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.HARMONIZEDBRAND", "parent_table_name": "BRAND(HARMONIZED)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "container_name": "01. Nutella Core", "container_type_id": "GLOBALSUBCATEGORY", "container_type_name": "L2 - SUBCATEGORY", "inherited_metadata_values": [{"id": "MARKETING_SUBCATEGORY", "tabular": false, "value_id": {"uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "originator_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "inherited_field_id": "3000ad591e09b5c75f85fc2ccbb9ebeb31b3ab78"}, "metadata_element": {"id": "MARKETING_SUBCATEGORY", "name": "SUBCATEGORY", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Mart-Nutella-Core"}, "display_value": "Nutella Core", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "SUBCATEGORY", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "SUBCATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "SUBCATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "tabular": true, "value_id": {"uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "originator_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "inherited_field_id": "2c751ce760d88c0e271925ea5149348106944bfa"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Subcategory Owner", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_SUBCATEGORY_OWNER_TM", "column_name": "SUBCATEGORY_OWNER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "parent_table_name": "Subcategory Owner", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "container_name": "Nutella", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "originator_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E04"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "0c30edd40569bc215307f7215ab86cbd8fac163b", "container_name": "00. Master Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "0c30edd40569bc215307f7215ab86cbd8fac163b", "originator_id": "0c30edd40569bc215307f7215ab86cbd8fac163b", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00. Master Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "container_name": "CONTENT SCALING XX", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "originator_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CONTENT SCALING XX"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "originator_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000566"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "originator_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CONTENT_SCALING_XX_JV_LA_MLT_NUT_0000566"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "originator_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "originator_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "originator_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local adaptation of global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "originator_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000138"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "originator_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Brand", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "originator_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Market", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "originator_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2024/2025"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "originator_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "originator_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "originator_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "A5"}, "display_value": "Rework needed from Agency", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "4c1c7f196a1c3ed92b46d235cb565892ef92e843", "container_name": "00. Master Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "4c1c7f196a1c3ed92b46d235cb565892ef92e843", "originator_id": "4c1c7f196a1c3ed92b46d235cb565892ef92e843", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00. Master Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "container_name": "CONTENT SCALING OLIVER TEST 3", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CONTENT SCALING OLIVER TEST 3"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000551"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CONTENT_SCALING_OLI_JV_LA_DE_NUT_0000551"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local adaptation of global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000068"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Brand", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Market", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2025/2026"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2821"}, "display_value": "N/A, Krithiha (Krithiha, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2821"}, "display_value": "N/A, Krithiha (Krithiha, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2821"}, "display_value": "N/A, Krithiha (Krithiha, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2821"}, "display_value": "N/A, Krithiha (Krithiha, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "A1"}, "display_value": "Local Campaign ready for localization", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "f389599295d557119a440c04d15b17f1b6e59107", "container_name": "Campaigns", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "f389599295d557119a440c04d15b17f1b6e59107", "originator_id": "f389599295d557119a440c04d15b17f1b6e59107", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Campaigns"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "container_name": "DE", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "originator_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "inherited_field_id": "5efe2981e6f9afca7ed3fc91a171f02162ef23e3"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E006"}, "display_value": "GERMANY", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "originator_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Local DE Editable Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "originator_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Nutella Local DE Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "originator_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "originator_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "inherited_field_id": "0de507c8b9d1f5942b6376b6c2a2b3ec1097e42e"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E64"}, "display_value": "GERMANY", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "originator_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local comm on global brands"}, "display_value": "Local comm on global brands", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local comm on global brands"}, "display_value": "Local comm on global brands", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "251d8b8f1089c9f08cf282832453f0f6ccca00f1", "container_name": "05. Final Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "251d8b8f1089c9f08cf282832453f0f6ccca00f1", "originator_id": "251d8b8f1089c9f08cf282832453f0f6ccca00f1", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "05. Final Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "container_name": "NUTELLA PLANT-BASED LAUNCH", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA PLANT-BASED LAUNCH"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000068"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "GL_FY25_NUT_30_NUTELLA_PLANT_00068"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Brand", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Market", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Global comm024/2025"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2821"}, "display_value": "N/A, Krithiha (Krithiha, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2821"}, "display_value": "N/A, Krithiha (Krithiha, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2821"}, "display_value": "N/A, Krithiha (Krithiha, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2821"}, "display_value": "N/A, Krithiha (Krithiha, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "B2"}, "display_value": "Master campaign received from Agency", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "container_name": "Global", "container_type_id": "GEOGRAPHYGLOBAL", "container_type_name": "L4 - GEOGRAPHY GLOBAL", "inherited_metadata_values": [{"id": "FERRERO.MARKET.FOLDER.GLOBAL", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "963db123044a8d3ff5d8f4aac56d35df77a7656c"}, "metadata_element": {"id": "FERRERO.MARKET.FOLDER.GLOBAL", "name": "Global/Local (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "GLOBAL"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local (Marketing)", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "GLOBALLOCAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_AREA", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "3a37ace6a53a93799e0e18773ba6c7e70305cc78"}, "metadata_element": {"id": "MARKETING_AREA", "name": "AREA", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AREA", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "AREA", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "AREA", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "9f64f884b41d2a8445f4d9cd60714e91024e8b13"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Global Editable Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "8847a6dfbebcf323a8170649b390af1a375c08b8"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Nutella Global Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "758e614412f11ecb58446966d328974daf253446"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "53df9e81ae46cf6bd2440643426224b1fb904aeb"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "name": "Published Security Policy - Restricted Visibility", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Global Published Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Security Policy - Restricted Visibility", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_VISIBILITY_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "0fbcf70c95f5d28645e7a6187f7c429d62e60380"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Global comm"}, "display_value": "Global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Global comm"}, "display_value": "Global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "container_name": "Oliver Sharing", "container_type_id": "L3 - Agency Structure", "container_type_name": "L3 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "55530f721f18c847e35d7c828edf53461b5014b0"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "330bb6f68316aab5c45f9fe34e047cce573c67cc"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "name": "Agency Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "AGENCY_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "e30e90d694f9935d4c15c4c78891beed8853a272"}, "metadata_element": {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "name": "Published Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "PUBLISHED_ASSET_SP_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "23b155c32d5c6142914b41458234c100812bbec8", "container_name": "Oliver", "container_type_id": "L2 - Agency Structure", "container_type_name": "L2 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.AGENCY", "tabular": false, "value_id": {"uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "originator_id": "23b155c32d5c6142914b41458234c100812bbec8", "inherited_field_id": "48fcbc397986aca5bb8722a95197dd0a46f19b4e"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_AGENCY", "column_name": "AGENCY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "container_name": "Z - Exchange", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "YY"}, "display_value": "AGENCIES", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}], "asset_lock_state_last_update_date": "2025-11-05T12:08:52.677+01:00", "content_lock_state_last_update_date": "2025-10-31T16:39:59.727+01:00"}, "language_code": null, "language_name": null, "subject_title": null, "file_extension": ".jpg", "asset_type_name": null, "file_size_bytes": null, "duration_seconds": null, "upload_directory": "89fa66f966144467721d6829db4d88d25ac026b1", "local_campaign_id": "C000000551", "original_filename": "nutella pbased", "global_master_folder_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "global_master_campaign_id": "C000000068"} 2025-11-13 17:07:53.487139 \N 4 p3yZR6 master_asset_created {"id": 4, "tags": null, "status": "active", "width_px": null, "height_px": null, "mime_type": "audio/x-wav", "asset_type": null, "brand_code": null, "brand_name": null, "categories": null, "created_at": "2025-11-21T03:20:27.67401", "deleted_at": null, "is_deleted": false, "updated_at": "2025-11-21T03:20:27.67401", "description": "Box File ID: 2052719269520\\nBox URL: https://app.box.com/file/2052719269520\\nDAM Asset ID: c2909a205fd85472f291f4ec42222c81eeb76e7c", "ingested_at": "2025-11-21T03:20:27.67401", "ingested_by": null, "opentext_id": "c2909a205fd85472f291f4ec42222c81eeb76e7c", "tracking_id": "p3yZR6", "aspect_ratio": null, "country_code": null, "country_name": null, "full_metadata": {"name": "250924HR-STEMS-17h36-NutellaWeihnachtenShareTheLove15s-ATMOBUS.wav", "links": {"links": [], "source_id": "c2909a205fd85472f291f4ec42222c81eeb76e7c"}, "locked": false, "deleted": false, "expired": false, "version": 1, "asset_id": "c2909a205fd85472f291f4ec42222c81eeb76e7c", "metadata": {"id": "ECOMMERCE", "name": "Marketing Asset", "type": "com.artesia.metadata.MetadataModel", "legacy_id": 116, "metadata_element_list": [{"id": "FERRERO.CATEGORY.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200054, "metadata_element_list": [{"id": "FERRERO.FIELD.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Status", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.CONTENT_STATUS", "edit_type": "COMBO_NOTNULL", "facetable": false, "searchable": true, "table_name": "FERRERO_CONTENT_STATUS_MD", "column_name": "CONTENT_STATUS", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9215, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRER.CATEGORY.ASSET_INFO", "name": "Asset Info", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200022, "metadata_element_list": [{"id": "FERRERO.FIELD.MKTG.ASSET TYPE", "name": "Asset Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "tvc"}, "display_value": "TVC", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.ASSETTYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.FISCAL YEAR", "name": "Release Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2025/2026"}, "display_value": "2025/2026", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Release Fiscal Year", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_DOMAIN_FISCAL_YEAR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "FISCAL__YEAR", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "name": "Main Languages", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1210, "metadata_element_list": [{"id": "MAIN_LANGUAGES", "name": "MAIN LANGUAGES", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "MAIN LANGUAGES", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MAIN LAGUAGES_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MAIN_LANGUAGE_TABLE", "column_name": "MAIN_LANGUAGE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "parent_table_name": "Main Languages", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.ASSET DESCRIPTION", "name": "Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Audio file test"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Description", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "DESCR", "data_length": 249, "description": "Descriptive information", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.FLAVOUR", "name": "Flavour", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Flavour", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.FLAVOUR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FLAVOUR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.SIZE", "name": "Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Size", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.SIZE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SIZE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1241, "metadata_element_list": [{"id": "FERRERO.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Compliance", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ASSETCOMPLIANCE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_COMPLIANCE", "column_name": "ASSET_COMPLIANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "parent_table_name": "Asset Compliance", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.TAG DETAILS", "name": "Tag Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 118, "metadata_element_list": [{"id": "ARTESIA.FIELD.TAG", "name": "Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Tag", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.TAGS", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "OTMM_TAGS", "column_name": "TAG", "data_length": 80, "description": "Tag", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG CONFIDENCE", "name": "Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Confidence", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG TYPE", "name": "Tag Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Tag Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "TAG_TYPE", "data_length": 10, "description": "Tag Type", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED BY", "name": "Associated By", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Associated By", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_BY", "data_length": 10, "description": "Associated By", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED DATE", "name": "Associated Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Associated Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_DATE", "data_length": 10, "description": "Associated Date", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.STATE", "name": "Global/Local", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "GLOBAL"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO_NOTNULL", "facetable": true, "searchable": true, "table_name": "FERRERO_IC_ASSET_DETAILS", "column_name": "ASSET_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.ASPECT RATIO", "name": "Aspect Ratio (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio (Marketing)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASPECT_RATIO", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASPECT_RATIO", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "name": "Tag (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1222, "metadata_element_list": [{"id": "MARKETING_TAG", "name": "Marketing Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Marketing Tag", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.DOMAIN.TAG", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TAG_MARKET", "column_name": "TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "parent_table_name": "Tag (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.TAGS", "name": "Auto-Generated Tags", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Auto-Generated Tags", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "AUTO_GENERATED_TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CERTIFIER", "name": "Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approver", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.MARKETING.FIELD.APPROVAL DATE", "name": "Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.LEGAL APPROVAL DATE", "name": "Legal Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CERTIFIER", "name": "IA&CC Certifier", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Certifier", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CC APPROVAL DATE", "name": "IA&CC Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "name": "Extended Approval", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1230, "metadata_element_list": [{"id": "FERRERO.FIELD.EXTENDED.APPROVAL", "name": "Extended Approval required by:", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended Approval required by:", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COMMENTS", "name": "Comment", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comment", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "COMMENTS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.DATE", "name": "Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USERS", "name": "User ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "User ID", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "USERS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXTENDED.JOBID", "name": "Extended JobID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended JobID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.MIGRATION.INDEX", "name": "Migration Index", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Migration Index", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MIGRATION.INDEX", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MIGRATION_INDEX", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "FERRERO_MARKET_MARKETING_CREATOR", "name": "Marketing Creator", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Marketing Creator", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.CREATOR", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MARKETING_CREATOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "ARTESIA.FIELD.IS LATEST VERSION", "name": "Is Latest Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Y"}, "display_value": "Yes", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Is Latest Version", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.YES_NO", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "IS_LATEST_VERSION", "data_length": 1, "description": "Is this the latest version? (Y/N)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET VERSION", "name": "Asset Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 1}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Version", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "INTEGER", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "VERSION", "data_length": 12, "description": "Version number of asset", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET_ID", "name": "Asset ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "c2909a205fd85472f291f4ec42222c81eeb76e7c"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset ID", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "LOGICAL_UOI_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.ECOMMERCE STATUS", "name": "Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "PUBLISHED"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Status", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "ASSET_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CREATOR", "name": "Uploaded by", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Uploaded by", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_USER_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.FIELD.CREATION DATE", "name": "Upload Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-11-13T14:34:31.017+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Upload Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_DT", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.ASSET NAME", "name": "Asset Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "250924HR-STEMS-17h36-NutellaWeihnachtenShareTheLove15s-ATMOBUS.wav"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Name", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "description": "Original name of master object", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.CONTENT TYPE", "name": "Content Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "AUDIO"}, "display_value": "Audio", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Type", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.CONTENT_TYPES", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "CONTENT_TYPE", "data_length": 8, "description": "Content Type", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.MIME TYPE", "name": "File Extension", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "audio/x-wav"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Extension", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_MIME_TYPE", "data_length": 80, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.FILE.SIZE", "name": "File Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "long", "value": 4320080}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Size", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "LONG", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_SIZE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP RESOLUTION", "name": "Bitmap Resolution", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Resolution", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_RESOLUTION", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP WIDTH", "name": "Bitmap Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Width", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_WIDTH", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP HEIGHT", "name": "Bitmap Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Height", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_HEIGHT", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.VIDEO.BIT_RATE", "name": "Bitrate", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 0.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitrate", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "BIT_RATE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.EMBEDDED.FIELD.DURATION", "name": "Duration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00:00:15:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Duration", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "DURATION_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.ASPECT RATIO", "name": "Aspect Ratio", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "ASPECT_RATIO", "data_length": 30, "displayable": false, "instructions": "ASPECT_RATIO", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME HEIGHT", "name": "Frame Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Height", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_HEIGHT", "data_length": 12, "displayable": true, "instructions": "FRAME_HEIGHT", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME WIDTH", "name": "Frame Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Width", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_WIDTH", "data_length": 12, "displayable": true, "instructions": "FRAME_WIDTH", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.ASPECT.RATIO.POC", "name": "Aspect Ratio(POC)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio(POC)", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASPECT_RATIO_TABLE", "column_name": "ASPECT_RATIO", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "PRODUCT.DETAILS", "name": "Product Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200029, "metadata_element_list": [{"id": "FERRERO.TABLE.EANCODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1208, "metadata_element_list": [{"id": "EAN_CODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "EAN CODE/ 77 CODE", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "EAN.CODE", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "EAN_CODE", "column_name": "EAN_CODE_DESCRIPTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "COUNTRY", "name": "COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "EAN_CODE", "column_name": "COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKETING.ADVANCE.PRODUCT.LINK", "name": "Asset-to-product relation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset-to-product relation", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_MARKETING_ADVANCE_PRODUCT_LINK", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ADVANCE_PRODUCT_LINK", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 10182, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.SUB BRAND", "name": "Sub-Brands", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Sub-Brands", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.SUBBRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "SUB_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT WEIGHT", "name": "Product Weight", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Weight", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_WEIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.CONSUMER UNIT PACKAGING", "name": "Consumer Unit Packaging", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Consumer Unit Packaging", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PACK", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "CONSUMER_UNIT_PACKAGING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.4 DIGIT CODE", "name": "4 Digit Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "4 Digit Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "DIGITCODE", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERREO.ECOM.RETAILER_SPECIFIC_FIELD", "name": "Retailer Specific", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Retailer Specific", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "RETAILER_SPECIFIC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "cascading_group_id": "FERRERO.RETAILER.SPECIFIC", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY START PERIOD", "name": "Asset validity start period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity start period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_STARTING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY END PERIOD", "name": "Asset validity end period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity end period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_ENDING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.ASSET.NAMING.CONVENTION", "name": "Does asset need GS1 naming convention", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Does asset need GS1 naming convention", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASSETNAMINGCONVENTION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_NAMING_CONVENTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9515, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT VIEW", "name": "Product View", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product View", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT VIEW", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_VIEW", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT ANGLE", "name": "Product Angle", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Angle", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT.ANGLE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_ANGLE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT STATE", "name": "Product State", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product State", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT STATE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PROMOTION ID", "name": "Promo ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Promo ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROMO_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.BUSINESS.ASSET TYPE", "name": "Asset Type (eDAM)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Type (eDAM)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "OTMM.DOMAIN.OTMM_ASSETTYPE_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_BUSINESS_INFO", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7244, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200048, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.AGENCY NAME", "name": "Agency Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Oliver"}, "display_value": "Oliver", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Agency Name", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.AGENCY_NAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AGENCY_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7336, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.CREATIX", "name": "CreativeX", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200059, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.CREATIVEX", "name": "Confidence", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1245, "metadata_element_list": [{"id": "FERRERO.TAB.FIELD.CREATIVEX", "name": "Platform > Rating (%)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Platform > Rating (%)", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_CREATIVEX", "column_name": "CREATIVEX_NEW", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CREATIVEX", "parent_table_name": "Confidence", "cascading_group_id": "FERRERO.CREATIVEX.CHAR", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.CREATIVEX LINK", "name": "CreativeX Hyperlink", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "CreativeX Hyperlink", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_CREATIVEX", "column_name": "CREATIVE_LINK", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.IP_RIGHTS", "name": "IP Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200046, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.IPRIGHT", "name": "IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "IP Rights", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.IPRIGHTS", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IP_RIGHTS", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.BUYOUT", "name": "Touchpoint Scope", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Touchpoint Scope", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.TOTAL_BUYOUT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TOTAL_BUYOUT", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.FERRERO PROPERTY", "name": "Ferrero Property", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Ferrero Property", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.FERRERO_PROPERTY", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FERRERO_PROPERTY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200035, "metadata_element_list": [{"id": "FERRERO.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1209, "metadata_element_list": [{"id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "name": "IP Coverage, Area, Region & Market Unit", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Coverage, Area, Region & Market Unit", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "IPCOVERAGE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "cascading_group_id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHT TYPE", "name": "Copyright Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHT_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.MEDIATYPE", "name": "Media Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Media Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MEDIA_TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "MEDIA_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE FROM", "name": "Expiration of Usage - From", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - From", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_FROM", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE TO", "name": "Expiration of Usage - To", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - To", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_TO", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO._DURATION", "name": "IP Duration", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Duration", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "ECOM_DURATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHTTYPE DETAILS", "name": "Copyright Type Details", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type Details", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHTTYPE_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 6, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.MARKET.VID_STAT_RIGHT", "name": "Video & Static Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200047, "metadata_element_list": [{"id": "FERRERO.MARKET.VID_N_STAT", "name": "Video and Static Right", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Video and Static Right", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VID_AND_STAT_RIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.VID_STAT_TYPE", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1221, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.TYPE_VID", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Video & Static Right", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TYPE_VID_STAT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_MARKET_TYPE_VID_STAT", "column_name": "TYPE_OF_VIDEO_STATIC_RIGHT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.VID_STAT_TYPE", "parent_table_name": "Type of Video & Static Right", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKET.PROD_COMPANY", "name": "Production House", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Production House", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.PRODUCT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200050, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.LICENSIN", "name": "Licensing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Licensing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSING", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "cascading_group_id": "FERRERO.MARKET.CG.LICENSE", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.SPOT_DETAILS", "name": "Spot Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200049, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.SPOT_VERSION", "name": "Spot Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Version", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_VERSION", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_VERSION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.SPOT_TYPE", "name": "Spot Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_TYPE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.DIRECTOR_NAME", "name": "Director Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Director Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "DIRECTOR_NAME", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VIDEO_POST_PROD_COMPANY", "name": "Video Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VID_POST_PROD_CONTACT", "name": "Video Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_COMPANY", "name": "Audio Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_CONTACT", "name": "Audio Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.BROADCASTER.CODE", "name": "Broadcaster Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Broadcaster Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BROADCASTER_CODE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.TECHNICAL_VALIDATION", "name": "Technical Validation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Technical Validation", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TECHNICAL_VALIDATION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS", "name": "Media Analysis", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1002, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "name": "Categories", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 105, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY NAME", "name": "Category Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Category Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "NAME", "data_length": 100, "description": "Category Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY CONFIDENCE", "name": "Category Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Category Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "CONFIDENCE", "data_length": 10, "description": "Category Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES COUNT", "name": "Faces Count", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Faces Count", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACECOUNT", "column_name": "COUNT", "data_length": 10, "description": "Faces Count", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "name": "Face Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 106, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME", "name": "Recognized Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME", "data_length": 2000, "description": "Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME CONFIDENCE", "name": "Recognized Name Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME_CONFIDENCE", "data_length": 10, "description": "Name Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE", "name": "Person Age", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE", "data_length": 10, "description": "Person Age", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE CONFIDENCE", "name": "Person Age Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Person Age Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_CONFIDENCE", "data_length": 10, "description": "Person Age Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER", "name": "Gender", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Gender", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.GENDER", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER", "data_length": 40, "description": "Gender", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER CONFIDENCE", "name": "Gender Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Gender Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER_CONFIDENCE", "data_length": 10, "description": "Gender Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.FACE COORDS", "name": "Face Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "FACE_COORDS", "data_length": 200, "description": "Face Coordinates like postion, height,width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE GROUP", "name": "Person Age Group", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age Group", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.AGE GROUP", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_GROUP", "data_length": 10, "description": "Person Age Group", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "name": "Safe Content", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 107, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONTENT TYPE", "name": "Safe Content Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Safe Content Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENTS", "data_length": 20, "description": "Safe Content Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONFIDENCE", "name": "Content Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Content Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENT_CONFIDENCE", "data_length": 10, "description": "Safe Content Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "name": "Colors", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 108, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.NAME", "name": "Color", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Color", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "NAME", "data_length": 25, "description": "COLOR", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.PROPORTION", "name": "Color Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Color Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "PROPORTION", "data_length": 10, "description": "Proportion", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.FOREGROUND", "name": "Foreground Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Foreground Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "FOREGROUND", "data_length": 25, "description": "Foreground Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.BACKGROUND", "name": "Background Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Background Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "BACKGROUND", "data_length": 25, "description": "Background Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.ISBW", "name": "Is Black and White", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Is Black and White", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "ISBW", "data_length": 10, "description": "Is Black and White", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "name": "Captions", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 109, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION TEXT", "name": "Caption Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Caption Text", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "TEXT", "data_length": 2000, "description": "Caption Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION CONFIDENCE", "name": "Caption Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Caption Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "CAPTION_CONFIDENCE", "data_length": 10, "description": "Caption Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "name": "Image Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 110, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.IMAGE TYPE", "name": "Analysis Image Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Analysis Image Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_IMAGE_TYPE", "column_name": "TYPE", "data_length": 100, "description": "Image Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "parent_table_name": "Image Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.DATE", "name": "Date: Media Analysis", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-11-13T14:36:42+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date: Media Analysis", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MEDIA_ANALYSIS_DATE", "data_length": 25, "description": "Date Media Analysis was done on the asset.", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR LANGUAGE", "name": "Image Text Language", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Image Text Language", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "LANGUAGE", "data_length": 10, "description": "OCR data language", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR TEXT", "name": "Text on Image", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Text on Image", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "TEXT", "data_length": 4000, "description": "OCR Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "name": "Embedded Brand Info", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 119, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.NAME", "name": "Embedded Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Embedded Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Embedded Brand Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.CONFIDENCE", "name": "Embedded Brand Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Embedded Brand Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Embedded Brand Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.COORDINATES", "name": "Embedded Brand Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Embedded Brand Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "COORDINATES", "data_length": 200, "description": "Embedded Brand Coordinates like position, height, width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "HYBRIS.PRODUCT.INFO", "name": "PIM Item Reference", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200027, "metadata_element_list": [{"id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "name": "Hybris Item Reference", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1206, "metadata_element_list": [{"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ID", "name": "Hybris Item ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ID", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT TAG NAME", "name": "Hybris Assignment Label", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Assignment Label", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_TAG_NAME", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ATTRIBUTE NAME", "name": "Hybris Attribute Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Attribute Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ATTRIBUTE_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT CATALOG NAME", "name": "Hybris Catalog Mnemonic", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Catalog Mnemonic", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_CATALOG_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT PK", "name": "Hybris Item PK", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item PK", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_PK", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.SYSTEM ID", "name": "Hybris System ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris System ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "SYSTEM_ID", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.ASSIGNED", "name": "Assigned", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Assigned", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "ASSIGNED", "column_name": "ASSIGNED", "data_length": 38, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PIM TYPE", "name": "PIM Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "PIM Type", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_PIM_TYPE", "column_name": "PIM_TYPE", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS VIDEO", "name": "Media Analysis Video", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1003, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "name": "Labels", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 113, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.ID", "name": "Label Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "ID", "data_length": 40, "description": "Label Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.NAME", "name": "Label Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "NAME", "data_length": 40, "description": "Label Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.APPEARANCES", "name": "Label Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "APPEARANCES", "data_length": 0, "description": "Label Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "name": "Sentiments", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 114, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.ID", "name": "Sentiment Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "ID", "data_length": 40, "description": "Sentiment Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.NAME", "name": "Sentiment Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "NAME", "data_length": 40, "description": "Sentiment Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.APPEARANCES", "name": "Sentiment Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "APPEARANCES", "data_length": 0, "description": "Sentiment Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.SEEN.DURATION.RATIO", "name": "Sentiment Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Sentiment Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "name": "Keywords", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 115, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.ID", "name": "Keyword Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "ID", "data_length": 40, "description": "Keyword Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.NAME", "name": "Keyword Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "NAME", "data_length": 40, "description": "Keyword Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.APPEARANCES", "name": "Keyword Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Keyword Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "name": "Faces", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 111, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.ID", "name": "Face Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "ID", "data_length": 40, "description": "Face Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.NAME", "name": "Face Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "NAME", "data_length": 40, "description": "Face Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.TITLE", "name": "Face Title", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Title", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "TITLE", "data_length": 249, "description": "Face Title", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.DESCRIPTION", "name": "Face Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Face Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.APPEARANCES", "name": "Face Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "APPEARANCES", "data_length": 0, "description": "Face Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SPEAKER.FACE.ID", "name": "Video Speaker Object Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Speaker Object Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "THUMBNAIL_OBJECT_ID", "data_length": 40, "description": "Video Speaker Object Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.SEEN.DURATION.RATIO", "name": "Face Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "SEEN_DURATION_RATIO", "data_length": 20, "description": "Face Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "name": "Brands", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 112, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.ID", "name": "Video Brand Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "ID", "data_length": 40, "description": "Brand Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.NAME", "name": "Video Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Brand Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.DESCRIPTION", "name": "Video Brand Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Brand Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.WIKIURL", "name": "Video Brand Wiki URL", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Wiki URL", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "WIKIURL", "data_length": 200, "description": "Brand Wiki URL", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.APPEARANCES", "name": "Video Brand Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Brand Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.SEEN.DURATION.RATIO", "name": "Video Brand Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Brand Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "name": "Speeches", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 116, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.ID", "name": "SpeechText Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "SpeechText Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "ID", "data_length": 40, "description": "SpeechText Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXT", "name": "Speech Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Text", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXT", "data_length": 1000, "description": "Speech Text", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXTTYPE", "name": "Speech Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXTTYPE", "data_length": 40, "description": "Speech Type", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.START TIME", "name": "Speech Start Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Start Time", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "START_TIME", "data_length": 40, "description": "Speech Start Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.END TIME", "name": "Speech End Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech End Time", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "END_TIME", "data_length": 40, "description": "Speech End Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "name": "Speakers", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 122, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.ID", "name": "Speaker Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "ID", "data_length": 40, "description": "Speaker Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.NAME", "name": "Speaker Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "NAME", "data_length": 100, "description": "Speaker Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.APPEARANCES", "name": "Speaker Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "APPEARANCES", "data_length": 0, "description": "Speaker Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.FIELDGROUP.LOCALASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200057, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1239, "metadata_element_list": [{"id": "FERRERO.FIELD.COUNTRY", "name": "LOCAL COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "LOCAL COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USER", "name": "USER", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "USER", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_USER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.ASSOCIATION", "name": "TYPE OF ASSOCIATION", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "TYPE OF ASSOCIATION", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_ASSOCIATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.VALUE", "name": "VALUE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "VALUE", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_VALUE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "ARTESIA.CATEGORY.VIDEO ATTRIBUTES", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 0, "metadata_element_list": [{"id": "ARTESIA.FIELD.VIDEO.LOW RES MIME TYPE", "name": "Low Resolution Mimetype", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "audio/mpeg"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Low Resolution Mimetype", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": false, "data_type": "CHAR", "facetable": false, "searchable": false, "table_name": "VIDEO_URLS", "column_name": "LO_RES_MIME_TYPE", "data_length": 80, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.VIDEO.START SMPTE", "name": "Start Time SMPTE", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00:00:00:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Start Time SMPTE", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "VIDEO_ASSETS", "column_name": "START_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.END SMPTE", "name": "End Time SMPTE", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00:00:15:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "End Time SMPTE", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "VIDEO_ASSETS", "column_name": "END_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.DURATION SMPTE", "name": "Duration SMPTE", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00:00:15:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Duration SMPTE", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": false, "data_type": "CHAR", "facetable": false, "searchable": false, "table_name": "VIDEO_ASSETS", "column_name": "DURATION_SMPTE", "data_length": 11, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.VIDEO.VIDEO REFERENCE", "name": "Video Reference", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 36224}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Reference", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": false, "data_type": "NUMBER", "facetable": false, "searchable": false, "table_name": "VIDEO_ASSETS", "column_name": "VIDEO_REFERENCE", "data_length": 0, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false}]}], "has_multilingual_fields": false}, "mime_type": "audio/x-wav", "path_list": [{"parents": [{"id": "22ffc2d88af095463e48ab79e09886102f039563", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "22ffc2d88af095463e48ab79e09886102f039563", "sequence_number": 0}, {"id": "c6e6896565298d09d364f501aecd10d0998d8437", "name": "NUTELLA XMAS - PL ADAPTATION 2", "container_state": "NORMAL", "original_uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "sequence_number": 0}, {"id": "20c88462ba3557e7aae759665cbe331f693d398a", "name": "02. Campaigns", "container_state": "NORMAL", "original_uoi_id": "20c88462ba3557e7aae759665cbe331f693d398a", "sequence_number": 0}, {"id": "1638869b9b347c39842effc7e5ff965de47e8e65", "name": "01.Standard", "container_state": "NORMAL", "original_uoi_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "sequence_number": 0}, {"id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "name": "01.Poland", "container_state": "NORMAL", "original_uoi_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "sequence_number": 0}, {"id": "341bbf240ea033435cc225cd1add5c009bc067d7", "name": "PL", "container_state": "NORMAL", "original_uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "sequence_number": 0}, {"id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "name": "01. PL - Nutella", "container_state": "NORMAL", "original_uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "sequence_number": 0}, {"id": "5353bb35177d792b073acc634e010df2908fde32", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 4, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "sequence_number": 0}, {"id": "847c0ede25c32edd97546221fe54fb392431848d", "name": "NUTELLA XMAS - PL ADAPTATION 3", "container_state": "NORMAL", "original_uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "sequence_number": 0}, {"id": "20c88462ba3557e7aae759665cbe331f693d398a", "name": "02. Campaigns", "container_state": "NORMAL", "original_uoi_id": "20c88462ba3557e7aae759665cbe331f693d398a", "sequence_number": 0}, {"id": "1638869b9b347c39842effc7e5ff965de47e8e65", "name": "01.Standard", "container_state": "NORMAL", "original_uoi_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "sequence_number": 0}, {"id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "name": "01.Poland", "container_state": "NORMAL", "original_uoi_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "sequence_number": 0}, {"id": "341bbf240ea033435cc225cd1add5c009bc067d7", "name": "PL", "container_state": "NORMAL", "original_uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "sequence_number": 0}, {"id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "name": "01. PL - Nutella", "container_state": "NORMAL", "original_uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "sequence_number": 0}, {"id": "5353bb35177d792b073acc634e010df2908fde32", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 4, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "103a6545e38f07f6e989a86c6ee7e10339a71a14", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "103a6545e38f07f6e989a86c6ee7e10339a71a14", "sequence_number": 0}, {"id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "name": "NUTELLA - CHRISTMAS 26 E2E", "container_state": "NORMAL", "original_uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "sequence_number": 0}, {"id": "413c776f4416163b88737d53bb72dfe23bfd2430", "name": "Global", "container_state": "NORMAL", "original_uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 10, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "sequence_number": 0}, {"id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "name": "Oliver Read Only", "container_state": "NORMAL", "original_uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "sequence_number": 0}, {"id": "23b155c32d5c6142914b41458234c100812bbec8", "name": "Oliver", "container_state": "NORMAL", "original_uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "sequence_number": 0}, {"id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "name": "Z - Exchange", "container_state": "NORMAL", "original_uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "sequence_number": 0}], "complete": true, "sequence_number": 4, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "22ffc2d88af095463e48ab79e09886102f039563", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "22ffc2d88af095463e48ab79e09886102f039563", "sequence_number": 0}, {"id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "name": "Oliver Read Only", "container_state": "NORMAL", "original_uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "sequence_number": 0}, {"id": "23b155c32d5c6142914b41458234c100812bbec8", "name": "Oliver", "container_state": "NORMAL", "original_uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "sequence_number": 0}, {"id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "name": "Z - Exchange", "container_state": "NORMAL", "original_uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "sequence_number": 0}], "complete": true, "sequence_number": 4, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}], "creator_id": "1003", "asset_state": "NORMAL", "checked_out": false, "folder_path": "", "content_size": 4320080, "content_type": "AUDIO", "content_state": "NORMAL", "date_imported": "2025-11-13T14:34:31.017+01:00", "import_job_id": 217218, "streaming_url": "https://ppr.dam.ferrero.com/video/data/repository/original/vol0/224/add05e150cfc6e927edfd0494ccea6c578ed3f47_proxy.mp3", "subscribed_to": false, "collection_ids": [], "latest_version": true, "legacy_model_id": 116, "content_editable": true, "content_sub_type": "WHOLE", "import_user_name": "bizAdmin", "date_last_updated": "2025-11-13T14:52:11.743+01:00", "metadata_model_id": "ECOMMERCE", "original_asset_id": "c2909a205fd85472f291f4ec42222c81eeb76e7c", "rendition_content": {"preview_content": {"id": "0197a2211214719c10463508faa6129d2612c620", "url": "/otmmapi/v6/renditions/0197a2211214719c10463508faa6129d2612c620", "name": "250924HR-STEMS-17h36-NutellaWeihnachtenShareTheLove15s-ATMOBUS.mp3", "width": 0, "height": 0, "mime_type": "audio/mpeg", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "PREVIEW", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\224\\\\add05e150cfc6e927edfd0494ccea6c578ed3f47_proxy.mp3", "content_size": 240812, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_content_info": {"master_content": {"id": "41b953fd375e3963b00c25be99c1a9d1770a16c0", "url": "/otmmapi/v6/renditions/41b953fd375e3963b00c25be99c1a9d1770a16c0", "name": "250924HR-STEMS-17h36-NutellaWeihnachtenShareTheLove15s-ATMOBUS.wav", "width": -1, "height": -1, "mime_type": "audio/x-wav", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\224\\\\250924HR-STEMS-17h36-NutellaWeihnachtenShareTheLove15s-ATMOBUS_41b953fd375e3963b00c25be99c1a9d1770a16c0.wav", "content_size": 4320080, "unit_of_size": "BYTES", "content_checksum": "91f9674c00ade7c5ab0056968dcb317c", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "supporting_content": [{"id": "add05e150cfc6e927edfd0494ccea6c578ed3f47", "url": "/otmmapi/v6/renditions/add05e150cfc6e927edfd0494ccea6c578ed3f47", "name": "250924HR-STEMS-17h36-NutellaWeihnachtenShareTheLove15s-ATMOBUS.mp3", "width": 0, "height": 0, "mime_type": "audio/mpeg", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "SUPPORTING", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\224\\\\add05e150cfc6e927edfd0494ccea6c578ed3f47_proxy.mp3", "content_size": 240812, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}]}, "asset_state_user_id": "1003", "master_content_info": {"id": "41b953fd375e3963b00c25be99c1a9d1770a16c0", "url": "/otmmapi/v6/renditions/41b953fd375e3963b00c25be99c1a9d1770a16c0", "name": "250924HR-STEMS-17h36-NutellaWeihnachtenShareTheLove15s-ATMOBUS.wav", "width": -1, "height": -1, "mime_type": "audio/x-wav", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\224\\\\250924HR-STEMS-17h36-NutellaWeihnachtenShareTheLove15s-ATMOBUS_41b953fd375e3963b00c25be99c1a9d1770a16c0.wav", "content_size": 4320080, "unit_of_size": "BYTES", "content_checksum": "91f9674c00ade7c5ab0056968dcb317c", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "delivery_service_url": "https://ppr.dam.ferrero.com/adaptivemedia/rendition?id=c2909a205fd85472f291f4ec42222c81eeb76e7c", "product_associations": false, "security_policy_list": [{"id": 5467, "name": "Marketing Viewer", "status": "NORMAL", "created_by": "1003", "create_date": "2023-10-06T16:52:07.297+02:00", "description": "Marketing Viewer", "ownership_type": "PUBLIC"}], "content_state_user_id": "1003", "content_state_user_name": "OTMM BusinessAdmin", "asset_lock_state_user_id": "1003", "metadata_state_user_name": "OTMM BusinessAdmin", "progressive_download_url": "https://ppr.dam.ferrero.com/video/data/repository/original/vol0/224/add05e150cfc6e927edfd0494ccea6c578ed3f47_proxy.mp3", "access_control_descriptor": {"permissions_map": {"entry": [{"key": "text.securityPolicy.permission.Custom04Permission", "value": true}, {"key": "text.securityPolicy.permission.ContentEditPermission", "value": true}, {"key": "text.securityPolicy.permission.AssetViewPermission", "value": true}, {"key": "text.securityPolicy.permission.ProjectViewPermission", "value": true}, {"key": "text.securityPolicy.permission.MembershipEditPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom03Permission", "value": true}, {"key": "text.securityPolicy.permission.MetaDataEditPermission", "value": true}, {"key": "text.securityPolicy.permission.EditParentsPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom02Permission", "value": true}, {"key": "text.securityPolicy.permission.ExportPermission", "value": true}, {"key": "text.securityPolicy.permission.SummaryViewPermission", "value": true}, {"key": "text.securityPolicy.permission.PreviewViewPermission", "value": true}, {"key": "text.securityPolicy.permission.SubscribePermission", "value": true}, {"key": "text.securityPolicy.permission.DeleteAssetPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom01Permission", "value": true}]}}, "content_lock_state_user_id": "1003", "asset_state_last_update_date": "2025-11-13T14:52:11.743+01:00", "content_lock_state_user_name": "bizAdmin", "metadata_lock_state_user_name": "bizAdmin", "content_state_last_update_date": "2025-11-13T14:34:31.22+01:00", "inherited_metadata_collections": [{"container_id": "22ffc2d88af095463e48ab79e09886102f039563", "container_name": "00. Master Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "22ffc2d88af095463e48ab79e09886102f039563", "originator_id": "22ffc2d88af095463e48ab79e09886102f039563", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00. Master Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "c6e6896565298d09d364f501aecd10d0998d8437", "container_name": "NUTELLA XMAS - PL ADAPTATION 2", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA XMAS - PL ADAPTATION 2"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000598"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA_XMAS_-_PL__JV_LA_MLT_NUT_0000598"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CHRISTMAS"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local adaptation of global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000576"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "EE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "EE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "LT"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "LV"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2024/2025"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "A5"}, "display_value": "Rework needed from Agency", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.DEPARTMENTNAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "20c88462ba3557e7aae759665cbe331f693d398a", "container_name": "02. Campaigns", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "20c88462ba3557e7aae759665cbe331f693d398a", "originator_id": "20c88462ba3557e7aae759665cbe331f693d398a", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "02. Campaigns"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "container_name": "01.Standard", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "originator_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "01.Standard"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "container_name": "01.Poland", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "originator_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "01.Poland"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "container_name": "PL", "container_type_id": "GLOBALMARKETUNIT", "container_type_name": "L6 - MARKET UNIT", "inherited_metadata_values": [{"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "b94dd71b732e3c1df6ae63216c53d4d4b0e7f002"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E39"}, "display_value": "POLAND", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "13063087b81ea172db42e69ed8e8fa013cd5bfe0"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Local PL Editable Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "bf49ba2a40d0d0dccee4d5de7381659b106dd89a"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Nutella Local PL Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "3c0070e420882e3e18f6097811cb60a67239003b"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "7f3c1933b61e900457ea6e2aab750303882873d4"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "b0c960759e48c0fcdcb650417179a614da95e866"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Local PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "6f603fcc63415e266dc35cf2314d31357a2966bf"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "495fa4f08769a021cfa907dfb7a903fade9bd19a"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "e3b647e172a89e1e7cbdd2964faff1bca8dcf520"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "6870cca056b54cd400a9fbd4fe75513e69cedcdd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "container_name": "01. PL - Nutella", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "5efe2981e6f9afca7ed3fc91a171f02162ef23e3"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E008"}, "display_value": "POLAND", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Local PL Editable Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0de507c8b9d1f5942b6376b6c2a2b3ec1097e42e"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E39"}, "display_value": "POLAND", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "ca70a6d55e4277ecbef2a01a593c614501cbcf74"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "3e9d669ab1047383d0416ba40af75744148c94c8"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0e241fc386dcd91baa31a409e297169fe4a352c2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "2e3e0f2be0e487b540d9b63cb8c0e9ed9c6b1bb6"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "359c98154f230a60acc6b4eb048e129411d7a778"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "e92f9f10c0c29dda8261218c2c72a0baa66472f2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "15dff42c3b196ba3ae5b3c2ea33f00e347e6f654"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0ae044cd9dddf86cd9406c9edc3996b18c430be0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "name": "AMMC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AMMC", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LOCAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "7806fed6127b50c21f6b03e1f7b63f3dedc1e8d1"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "4c8a2d6e178638bfacfeaf3f7f6f1000304693a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "name": "Product Asset Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Asset Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCT_ASSET_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "5353bb35177d792b073acc634e010df2908fde32", "container_name": "EU", "container_type_id": "GEOGRAPHYLOCAL", "container_type_name": "L4 - GEOGRAPHY LOCAL", "inherited_metadata_values": [{"id": "FERRERO.MARKET.FOLDER.GLOBAL", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "4c4d4bf36bf8b1ace55f990e78d6332a9cb20990"}, "metadata_element": {"id": "FERRERO.MARKET.FOLDER.GLOBAL", "name": "Global/Local (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "LOCAL"}, "display_value": "Local", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local (Marketing)", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "GLOBALLOCAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_AREA", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "3dc200c993ab8263952dc6da1498026f615f45dd"}, "metadata_element": {"id": "MARKETING_AREA", "name": "AREA", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E010"}, "display_value": "EUROPE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "AREA", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "AREA", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "AREA", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "dc7749c3e113ec9e0b9e9a3840ea55673ca5e49f"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "f2d658a3829c2ea158ae70a4b4e7928bcf88f8e2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "972d0258a82de85672bd84d8af68cdb67ad3d3ca"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "1212505ad3fe4c9d7458568f3d95aeb4c4e5c37e"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "9d1dfdef55ff7a3eb03552988ddf729c7a0f5107"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "54f006eeb366121a29ee98da33d437615dcd34e0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "1fd8802010e30d44cebb2f3eb090b12ac550f97d"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "be0dc9a87262ee7fd165237b531ba3b7aa93a260"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "2f99f0f0f9e43fb34df9222c8b73a86fb78e473e"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "container_name": "Nutella", "container_type_id": "GLOBALBRAND", "container_type_name": "L3 - BRAND", "inherited_metadata_values": [{"id": "FERRERO.TABULAR.NEW.BRAND", "tabular": true, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "9bb1c183135f5240f09132aef59c4ea48c762381"}, "metadata_element": {"id": "FERRERO.TABULAR.NEW.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF30"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND (Marketing)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF30"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "BRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TABULAR_BRAND", "column_name": "BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.NEW.BRAND", "parent_table_name": "BRAND (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "tabular": true, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "a37b13c02cba799378211e17b73234a0d836f9b6"}, "metadata_element": {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "JV"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND(HARMONIZED)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "JV"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.HARMONIZEDBRAND", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_HARMONIZEDBRAND", "column_name": "HARMONIZEDBRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.HARMONIZEDBRAND", "parent_table_name": "BRAND(HARMONIZED)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "AGENCY.COLLABORATION", "tabular": false, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "183d6e0957a9940f9b18ef44f46d957802b63397"}, "metadata_element": {"id": "AGENCY.COLLABORATION", "name": "Agency collaboration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency collaboration", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "AGENCY_COLLABORATION", "column_name": "AGENCY_COLLABORATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "AGENCY.SHARING", "tabular": false, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "d0e2b725ddfdc452cc3ba750bbe8ec059c6b01ba"}, "metadata_element": {"id": "AGENCY.SHARING", "name": "Agency sharing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency sharing", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "AGENCY_SHARING", "column_name": "AGENCY_SHARING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "CONTENT.SCALING.AGENCYNAME", "tabular": false, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "f9dfa695cc5ef8cd3fafada4e44cfdaa1522d58a"}, "metadata_element": {"id": "CONTENT.SCALING.AGENCYNAME", "name": "Content Scaling agency name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Scaling agency name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENTSCALING_AGENCYNAME", "column_name": "CONTENTSCALING_AGENCYNAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "container_name": "01. Nutella Core", "container_type_id": "GLOBALSUBCATEGORY", "container_type_name": "L2 - SUBCATEGORY", "inherited_metadata_values": [{"id": "MARKETING_SUBCATEGORY", "tabular": false, "value_id": {"uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "originator_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "inherited_field_id": "3000ad591e09b5c75f85fc2ccbb9ebeb31b3ab78"}, "metadata_element": {"id": "MARKETING_SUBCATEGORY", "name": "SUBCATEGORY", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Mart-Nutella-Core"}, "display_value": "Nutella Core", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "SUBCATEGORY", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "SUBCATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "SUBCATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "tabular": true, "value_id": {"uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "originator_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "inherited_field_id": "2c751ce760d88c0e271925ea5149348106944bfa"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Subcategory Owner", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_SUBCATEGORY_OWNER_TM", "column_name": "SUBCATEGORY_OWNER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "parent_table_name": "Subcategory Owner", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "container_name": "Nutella", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "originator_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E04"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "originator_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final Approver BPS ", "values": [{"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "container_name": "00. Master Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "originator_id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00. Master Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "847c0ede25c32edd97546221fe54fb392431848d", "container_name": "NUTELLA XMAS - PL ADAPTATION 3", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA XMAS - PL ADAPTATION 3"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000599"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA_XMAS_-_PL_A_JV_LA_PL_NUT_0000599"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CHRISTMAS"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local adaptation of global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000576"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2021/2022"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "A1"}, "display_value": "Local Campaign ready for localization", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.DEPARTMENTNAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "103a6545e38f07f6e989a86c6ee7e10339a71a14", "container_name": "05. Final Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "103a6545e38f07f6e989a86c6ee7e10339a71a14", "originator_id": "103a6545e38f07f6e989a86c6ee7e10339a71a14", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "05. Final Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "container_name": "NUTELLA - CHRISTMAS 26 E2E", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA - CHRISTMAS 26 E2E"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000576"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA_-_CHRISTMA_JV_GL_MLT_NUT_0000576"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "BE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "BE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "BG"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "EE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "LT"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "LU"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "LV"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "MD"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "NL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "RO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2025/2026"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "B2"}, "display_value": "Master campaign received from Agency", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.DEPARTMENTNAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "container_name": "Global", "container_type_id": "GEOGRAPHYGLOBAL", "container_type_name": "L4 - GEOGRAPHY GLOBAL", "inherited_metadata_values": [{"id": "FERRERO.MARKET.FOLDER.GLOBAL", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "963db123044a8d3ff5d8f4aac56d35df77a7656c"}, "metadata_element": {"id": "FERRERO.MARKET.FOLDER.GLOBAL", "name": "Global/Local (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "GLOBAL"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local (Marketing)", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "GLOBALLOCAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_AREA", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "3a37ace6a53a93799e0e18773ba6c7e70305cc78"}, "metadata_element": {"id": "MARKETING_AREA", "name": "AREA", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AREA", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "AREA", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "AREA", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "9f64f884b41d2a8445f4d9cd60714e91024e8b13"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Global Editable Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "8847a6dfbebcf323a8170649b390af1a375c08b8"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Nutella Global Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "758e614412f11ecb58446966d328974daf253446"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "53df9e81ae46cf6bd2440643426224b1fb904aeb"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "name": "Published Security Policy - Restricted Visibility", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Global Published Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Security Policy - Restricted Visibility", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_VISIBILITY_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "6b410cc3e966037a3e534da53137d32856cd6bdb"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "b5f185da6208925fe296e074dbdfdd74678ad076"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "b9e4bba5fa277862093047710c3fccb44a553f91"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "a70b94dccf12d05fbcf6a1881e4726759d8714a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "134e6810dec03aed0a70f68bf16cdd3a390f99de"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "2c412cc87805c4f03622e671cd7cdd65402b5598"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "0f4d4a35b08b4d2aac7ce7cc18999a8e5f523edf"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.GLOBAL APPROVER", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "43af18c983afd26a477317ac0b608495d9e0b3df"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.GLOBAL APPROVER", "name": "Global approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "GLOBAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "00dacbe20687d3c5d0be9b4fc2997c572e3c36bf"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "0fbcf70c95f5d28645e7a6187f7c429d62e60380"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Global comm"}, "display_value": "Global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Global comm"}, "display_value": "Global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "container_name": "Oliver Read Only", "container_type_id": "L3 - Agency Structure", "container_type_name": "L3 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "55530f721f18c847e35d7c828edf53461b5014b0"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "330bb6f68316aab5c45f9fe34e047cce573c67cc"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "name": "Agency Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "AGENCY_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "e30e90d694f9935d4c15c4c78891beed8853a272"}, "metadata_element": {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "name": "Published Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "PUBLISHED_ASSET_SP_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "23b155c32d5c6142914b41458234c100812bbec8", "container_name": "Oliver", "container_type_id": "L2 - Agency Structure", "container_type_name": "L2 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.AGENCY", "tabular": false, "value_id": {"uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "originator_id": "23b155c32d5c6142914b41458234c100812bbec8", "inherited_field_id": "48fcbc397986aca5bb8722a95197dd0a46f19b4e"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_AGENCY", "column_name": "AGENCY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "container_name": "Z - Exchange", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "YY"}, "display_value": "AGENCIES", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Final Approver BPS ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}], "asset_lock_state_last_update_date": "2025-11-13T14:52:11.967+01:00", "content_lock_state_last_update_date": "2025-11-13T14:34:31.243+01:00"}, "language_code": null, "language_name": null, "subject_title": null, "file_extension": ".wav", "asset_type_name": null, "file_size_bytes": null, "duration_seconds": null, "upload_directory": "95c935af7e32719e82ee47bcae9cf772c01b51fa", "local_campaign_id": "C000000599", "original_filename": "250924HR-STEMS-17h36-NutellaWeihnachtenShareTheLove15s-ATMOBUS", "global_master_folder_id": "847c0ede25c32edd97546221fe54fb392431848d", "global_master_campaign_id": "C000000576"} 2025-11-21 03:20:27.67401 \N 5 QIxiXZ master_asset_created {"id": 5, "tags": null, "status": "active", "width_px": null, "height_px": null, "mime_type": "video/mp4", "asset_type": null, "brand_code": null, "brand_name": null, "categories": null, "created_at": "2025-11-21T03:23:20.943566", "deleted_at": null, "is_deleted": false, "updated_at": "2025-11-21T03:23:20.943566", "description": "Box File ID: 2052715628784\\nBox URL: https://app.box.com/file/2052715628784\\nDAM Asset ID: a6d042144bd706efc71c3e57c061b39775dcb74c", "ingested_at": "2025-11-21T03:23:20.943566", "ingested_by": null, "opentext_id": "a6d042144bd706efc71c3e57c061b39775dcb74c", "tracking_id": "QIxiXZ", "aspect_ratio": null, "country_code": null, "country_name": null, "full_metadata": {"name": "311NUTELLAXMASShareTheLoveGlas15sTVC16b9v01328ENMASTER.mp4", "links": {"links": [], "source_id": "a6d042144bd706efc71c3e57c061b39775dcb74c"}, "locked": false, "deleted": false, "expired": false, "version": 1, "asset_id": "a6d042144bd706efc71c3e57c061b39775dcb74c", "metadata": {"id": "ECOMMERCE", "name": "Marketing Asset", "type": "com.artesia.metadata.MetadataModel", "legacy_id": 116, "metadata_element_list": [{"id": "FERRERO.CATEGORY.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200054, "metadata_element_list": [{"id": "FERRERO.FIELD.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Status", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.CONTENT_STATUS", "edit_type": "COMBO_NOTNULL", "facetable": false, "searchable": true, "table_name": "FERRERO_CONTENT_STATUS_MD", "column_name": "CONTENT_STATUS", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9215, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRER.CATEGORY.ASSET_INFO", "name": "Asset Info", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200022, "metadata_element_list": [{"id": "FERRERO.FIELD.MKTG.ASSET TYPE", "name": "Asset Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "tvc"}, "display_value": "TVC", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.ASSETTYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.FISCAL YEAR", "name": "Release Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2025/2026"}, "display_value": "2025/2026", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Release Fiscal Year", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_DOMAIN_FISCAL_YEAR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "FISCAL__YEAR", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "name": "Main Languages", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1210, "metadata_element_list": [{"id": "MAIN_LANGUAGES", "name": "MAIN LANGUAGES", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "MAIN LANGUAGES", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MAIN LAGUAGES_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MAIN_LANGUAGE_TABLE", "column_name": "MAIN_LANGUAGE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "parent_table_name": "Main Languages", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.ASSET DESCRIPTION", "name": "Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Description", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "DESCR", "data_length": 249, "description": "Descriptive information", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.FLAVOUR", "name": "Flavour", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Flavour", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.FLAVOUR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FLAVOUR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.SIZE", "name": "Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Size", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.SIZE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SIZE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1241, "metadata_element_list": [{"id": "FERRERO.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Compliance", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ASSETCOMPLIANCE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_COMPLIANCE", "column_name": "ASSET_COMPLIANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "parent_table_name": "Asset Compliance", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.TAG DETAILS", "name": "Tag Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 118, "metadata_element_list": [{"id": "ARTESIA.FIELD.TAG", "name": "Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Tag", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.TAGS", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "OTMM_TAGS", "column_name": "TAG", "data_length": 80, "description": "Tag", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG CONFIDENCE", "name": "Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Confidence", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG TYPE", "name": "Tag Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Tag Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "TAG_TYPE", "data_length": 10, "description": "Tag Type", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED BY", "name": "Associated By", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Associated By", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_BY", "data_length": 10, "description": "Associated By", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED DATE", "name": "Associated Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Associated Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_DATE", "data_length": 10, "description": "Associated Date", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.STATE", "name": "Global/Local", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "GLOBAL"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO_NOTNULL", "facetable": true, "searchable": true, "table_name": "FERRERO_IC_ASSET_DETAILS", "column_name": "ASSET_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.ASPECT RATIO", "name": "Aspect Ratio (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio (Marketing)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASPECT_RATIO", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASPECT_RATIO", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "name": "Tag (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1222, "metadata_element_list": [{"id": "MARKETING_TAG", "name": "Marketing Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Marketing Tag", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.DOMAIN.TAG", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TAG_MARKET", "column_name": "TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "parent_table_name": "Tag (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.TAGS", "name": "Auto-Generated Tags", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Auto-Generated Tags", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "AUTO_GENERATED_TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CERTIFIER", "name": "Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approver", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.MARKETING.FIELD.APPROVAL DATE", "name": "Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.LEGAL APPROVAL DATE", "name": "Legal Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CERTIFIER", "name": "IA&CC Certifier", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Certifier", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CC APPROVAL DATE", "name": "IA&CC Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "name": "Extended Approval", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1230, "metadata_element_list": [{"id": "FERRERO.FIELD.EXTENDED.APPROVAL", "name": "Extended Approval required by:", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended Approval required by:", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COMMENTS", "name": "Comment", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comment", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "COMMENTS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.DATE", "name": "Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USERS", "name": "User ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "User ID", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "USERS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXTENDED.JOBID", "name": "Extended JobID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended JobID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.MIGRATION.INDEX", "name": "Migration Index", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Migration Index", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MIGRATION.INDEX", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MIGRATION_INDEX", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "FERRERO_MARKET_MARKETING_CREATOR", "name": "Marketing Creator", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Marketing Creator", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.CREATOR", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MARKETING_CREATOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "ARTESIA.FIELD.IS LATEST VERSION", "name": "Is Latest Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Y"}, "display_value": "Yes", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Is Latest Version", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.YES_NO", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "IS_LATEST_VERSION", "data_length": 1, "description": "Is this the latest version? (Y/N)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET VERSION", "name": "Asset Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 1}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Version", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "INTEGER", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "VERSION", "data_length": 12, "description": "Version number of asset", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET_ID", "name": "Asset ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "a6d042144bd706efc71c3e57c061b39775dcb74c"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset ID", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "LOGICAL_UOI_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.ECOMMERCE STATUS", "name": "Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "PUBLISHED"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Status", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "ASSET_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CREATOR", "name": "Uploaded by", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Uploaded by", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_USER_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.FIELD.CREATION DATE", "name": "Upload Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-11-11T17:12:23.087+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Upload Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_DT", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.ASSET NAME", "name": "Asset Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "311NUTELLAXMASShareTheLoveGlas15sTVC16b9v01328ENMASTER.mp4"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Name", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "description": "Original name of master object", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.CONTENT TYPE", "name": "Content Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "VIDEO"}, "display_value": "Video", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Type", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.CONTENT_TYPES", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "CONTENT_TYPE", "data_length": 8, "description": "Content Type", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.MIME TYPE", "name": "File Extension", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "video/mp4"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Extension", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_MIME_TYPE", "data_length": 80, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.FILE.SIZE", "name": "File Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "long", "value": 39659656}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Size", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "LONG", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_SIZE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP RESOLUTION", "name": "Bitmap Resolution", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Resolution", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_RESOLUTION", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP WIDTH", "name": "Bitmap Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Width", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_WIDTH", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP HEIGHT", "name": "Bitmap Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Height", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_HEIGHT", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.VIDEO.BIT_RATE", "name": "Bitrate", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 21151817}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitrate", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "BIT_RATE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.EMBEDDED.FIELD.DURATION", "name": "Duration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00:00:15:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Duration", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "DURATION_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.ASPECT RATIO", "name": "Aspect Ratio", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "1.778"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "ASPECT_RATIO", "data_length": 30, "displayable": false, "instructions": "ASPECT_RATIO", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME HEIGHT", "name": "Frame Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 1080}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Height", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_HEIGHT", "data_length": 12, "displayable": true, "instructions": "FRAME_HEIGHT", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME WIDTH", "name": "Frame Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 1920}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Width", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_WIDTH", "data_length": 12, "displayable": true, "instructions": "FRAME_WIDTH", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.ASPECT.RATIO.POC", "name": "Aspect Ratio(POC)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "16:9"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio(POC)", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASPECT_RATIO_TABLE", "column_name": "ASPECT_RATIO", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "PRODUCT.DETAILS", "name": "Product Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200029, "metadata_element_list": [{"id": "FERRERO.TABLE.EANCODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1208, "metadata_element_list": [{"id": "EAN_CODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "EAN CODE/ 77 CODE", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "EAN.CODE", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "EAN_CODE", "column_name": "EAN_CODE_DESCRIPTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "COUNTRY", "name": "COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "EAN_CODE", "column_name": "COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKETING.ADVANCE.PRODUCT.LINK", "name": "Asset-to-product relation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset-to-product relation", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_MARKETING_ADVANCE_PRODUCT_LINK", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ADVANCE_PRODUCT_LINK", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 10182, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.SUB BRAND", "name": "Sub-Brands", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Sub-Brands", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.SUBBRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "SUB_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT WEIGHT", "name": "Product Weight", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Weight", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_WEIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.CONSUMER UNIT PACKAGING", "name": "Consumer Unit Packaging", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Consumer Unit Packaging", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PACK", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "CONSUMER_UNIT_PACKAGING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.4 DIGIT CODE", "name": "4 Digit Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "4 Digit Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "DIGITCODE", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERREO.ECOM.RETAILER_SPECIFIC_FIELD", "name": "Retailer Specific", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Retailer Specific", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "RETAILER_SPECIFIC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "cascading_group_id": "FERRERO.RETAILER.SPECIFIC", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY START PERIOD", "name": "Asset validity start period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity start period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_STARTING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY END PERIOD", "name": "Asset validity end period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity end period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_ENDING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.ASSET.NAMING.CONVENTION", "name": "Does asset need GS1 naming convention", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Does asset need GS1 naming convention", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASSETNAMINGCONVENTION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_NAMING_CONVENTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9515, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT VIEW", "name": "Product View", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product View", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT VIEW", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_VIEW", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT ANGLE", "name": "Product Angle", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Angle", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT.ANGLE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_ANGLE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT STATE", "name": "Product State", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product State", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT STATE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PROMOTION ID", "name": "Promo ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Promo ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROMO_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.BUSINESS.ASSET TYPE", "name": "Asset Type (eDAM)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Type (eDAM)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "OTMM.DOMAIN.OTMM_ASSETTYPE_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_BUSINESS_INFO", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7244, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200048, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.AGENCY NAME", "name": "Agency Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Agency Name", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.AGENCY_NAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AGENCY_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7336, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.CREATIX", "name": "CreativeX", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200059, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.CREATIVEX", "name": "Confidence", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1245, "metadata_element_list": [{"id": "FERRERO.TAB.FIELD.CREATIVEX", "name": "Platform > Rating (%)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Platform > Rating (%)", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_CREATIVEX", "column_name": "CREATIVEX_NEW", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CREATIVEX", "parent_table_name": "Confidence", "cascading_group_id": "FERRERO.CREATIVEX.CHAR", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.CREATIVEX LINK", "name": "CreativeX Hyperlink", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "CreativeX Hyperlink", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_CREATIVEX", "column_name": "CREATIVE_LINK", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.IP_RIGHTS", "name": "IP Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200046, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.IPRIGHT", "name": "IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "IP Rights", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.IPRIGHTS", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IP_RIGHTS", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.BUYOUT", "name": "Touchpoint Scope", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Touchpoint Scope", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.TOTAL_BUYOUT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TOTAL_BUYOUT", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.FERRERO PROPERTY", "name": "Ferrero Property", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Ferrero Property", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.FERRERO_PROPERTY", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FERRERO_PROPERTY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200035, "metadata_element_list": [{"id": "FERRERO.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1209, "metadata_element_list": [{"id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "name": "IP Coverage, Area, Region & Market Unit", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Coverage, Area, Region & Market Unit", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "IPCOVERAGE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "cascading_group_id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHT TYPE", "name": "Copyright Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHT_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.MEDIATYPE", "name": "Media Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Media Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MEDIA_TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "MEDIA_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE FROM", "name": "Expiration of Usage - From", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - From", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_FROM", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE TO", "name": "Expiration of Usage - To", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - To", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_TO", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO._DURATION", "name": "IP Duration", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Duration", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "ECOM_DURATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHTTYPE DETAILS", "name": "Copyright Type Details", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type Details", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHTTYPE_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 6, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.MARKET.VID_STAT_RIGHT", "name": "Video & Static Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200047, "metadata_element_list": [{"id": "FERRERO.MARKET.VID_N_STAT", "name": "Video and Static Right", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Video and Static Right", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VID_AND_STAT_RIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.VID_STAT_TYPE", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1221, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.TYPE_VID", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Video & Static Right", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TYPE_VID_STAT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_MARKET_TYPE_VID_STAT", "column_name": "TYPE_OF_VIDEO_STATIC_RIGHT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.VID_STAT_TYPE", "parent_table_name": "Type of Video & Static Right", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKET.PROD_COMPANY", "name": "Production House", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Production House", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.PRODUCT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200050, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.LICENSIN", "name": "Licensing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Licensing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSING", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "cascading_group_id": "FERRERO.MARKET.CG.LICENSE", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.SPOT_DETAILS", "name": "Spot Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200049, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.SPOT_VERSION", "name": "Spot Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Version", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_VERSION", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_VERSION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.SPOT_TYPE", "name": "Spot Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_TYPE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.DIRECTOR_NAME", "name": "Director Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Director Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "DIRECTOR_NAME", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VIDEO_POST_PROD_COMPANY", "name": "Video Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VID_POST_PROD_CONTACT", "name": "Video Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_COMPANY", "name": "Audio Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_CONTACT", "name": "Audio Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.BROADCASTER.CODE", "name": "Broadcaster Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Broadcaster Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BROADCASTER_CODE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.TECHNICAL_VALIDATION", "name": "Technical Validation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Technical Validation", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TECHNICAL_VALIDATION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS", "name": "Media Analysis", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1002, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "name": "Categories", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 105, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY NAME", "name": "Category Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Category Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "NAME", "data_length": 100, "description": "Category Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY CONFIDENCE", "name": "Category Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Category Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "CONFIDENCE", "data_length": 10, "description": "Category Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES COUNT", "name": "Faces Count", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Faces Count", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACECOUNT", "column_name": "COUNT", "data_length": 10, "description": "Faces Count", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "name": "Face Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 106, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME", "name": "Recognized Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME", "data_length": 2000, "description": "Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME CONFIDENCE", "name": "Recognized Name Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME_CONFIDENCE", "data_length": 10, "description": "Name Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE", "name": "Person Age", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE", "data_length": 10, "description": "Person Age", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE CONFIDENCE", "name": "Person Age Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Person Age Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_CONFIDENCE", "data_length": 10, "description": "Person Age Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER", "name": "Gender", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Gender", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.GENDER", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER", "data_length": 40, "description": "Gender", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER CONFIDENCE", "name": "Gender Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Gender Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER_CONFIDENCE", "data_length": 10, "description": "Gender Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.FACE COORDS", "name": "Face Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "FACE_COORDS", "data_length": 200, "description": "Face Coordinates like postion, height,width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE GROUP", "name": "Person Age Group", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age Group", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.AGE GROUP", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_GROUP", "data_length": 10, "description": "Person Age Group", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "name": "Safe Content", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 107, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONTENT TYPE", "name": "Safe Content Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Safe Content Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENTS", "data_length": 20, "description": "Safe Content Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONFIDENCE", "name": "Content Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Content Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENT_CONFIDENCE", "data_length": 10, "description": "Safe Content Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "name": "Colors", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 108, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.NAME", "name": "Color", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Color", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "NAME", "data_length": 25, "description": "COLOR", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.PROPORTION", "name": "Color Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Color Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "PROPORTION", "data_length": 10, "description": "Proportion", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.FOREGROUND", "name": "Foreground Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Foreground Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "FOREGROUND", "data_length": 25, "description": "Foreground Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.BACKGROUND", "name": "Background Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Background Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "BACKGROUND", "data_length": 25, "description": "Background Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.ISBW", "name": "Is Black and White", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Is Black and White", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "ISBW", "data_length": 10, "description": "Is Black and White", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "name": "Captions", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 109, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION TEXT", "name": "Caption Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Caption Text", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "TEXT", "data_length": 2000, "description": "Caption Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION CONFIDENCE", "name": "Caption Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Caption Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "CAPTION_CONFIDENCE", "data_length": 10, "description": "Caption Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "name": "Image Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 110, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.IMAGE TYPE", "name": "Analysis Image Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Analysis Image Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_IMAGE_TYPE", "column_name": "TYPE", "data_length": 100, "description": "Image Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "parent_table_name": "Image Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.DATE", "name": "Date: Media Analysis", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-11-11T17:18:08+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date: Media Analysis", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MEDIA_ANALYSIS_DATE", "data_length": 25, "description": "Date Media Analysis was done on the asset.", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR LANGUAGE", "name": "Image Text Language", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Image Text Language", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "LANGUAGE", "data_length": 10, "description": "OCR data language", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR TEXT", "name": "Text on Image", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Text on Image", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "TEXT", "data_length": 4000, "description": "OCR Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "name": "Embedded Brand Info", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 119, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.NAME", "name": "Embedded Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Embedded Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Embedded Brand Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.CONFIDENCE", "name": "Embedded Brand Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Embedded Brand Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Embedded Brand Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.COORDINATES", "name": "Embedded Brand Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Embedded Brand Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "COORDINATES", "data_length": 200, "description": "Embedded Brand Coordinates like position, height, width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "HYBRIS.PRODUCT.INFO", "name": "PIM Item Reference", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200027, "metadata_element_list": [{"id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "name": "Hybris Item Reference", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1206, "metadata_element_list": [{"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ID", "name": "Hybris Item ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ID", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT TAG NAME", "name": "Hybris Assignment Label", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Assignment Label", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_TAG_NAME", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ATTRIBUTE NAME", "name": "Hybris Attribute Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Attribute Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ATTRIBUTE_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT CATALOG NAME", "name": "Hybris Catalog Mnemonic", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Catalog Mnemonic", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_CATALOG_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT PK", "name": "Hybris Item PK", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item PK", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_PK", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.SYSTEM ID", "name": "Hybris System ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris System ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "SYSTEM_ID", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.ASSIGNED", "name": "Assigned", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Assigned", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "ASSIGNED", "column_name": "ASSIGNED", "data_length": 38, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PIM TYPE", "name": "PIM Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "PIM Type", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_PIM_TYPE", "column_name": "PIM_TYPE", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS VIDEO", "name": "Media Analysis Video", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1003, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "name": "Labels", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 113, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.ID", "name": "Label Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Label Id", "values": [{"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 1}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 2}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 3}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 4}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 5}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 6}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 7}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 8}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 9}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 10}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 11}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 12}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 13}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 14}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 15}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "ID", "data_length": 40, "description": "Label Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.NAME", "name": "Label Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "person"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Label Name", "values": [{"value": {"type": "string", "value": "person"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "clothing"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "human face"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "christmas tree"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "christmas"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "indoor"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "wall"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "tree"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "handwriting"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "text"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "smile"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "food"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "snack"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "dessert"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "tableware"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "baked goods"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "NAME", "data_length": 40, "description": "Label Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.APPEARANCES", "name": "Label Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:02\\",\\"endTime\\":\\"0:00:12.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Label Appearances", "values": [{"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:02\\",\\"endTime\\":\\"0:00:12.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:03\\",\\"endTime\\":\\"0:00:12.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:02\\",\\"endTime\\":\\"0:00:10.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:02\\",\\"endTime\\":\\"0:00:03.04\\"},{\\"startTime\\":\\"0:00:07\\",\\"endTime\\":\\"0:00:12.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:02\\",\\"endTime\\":\\"0:00:02.04\\"},{\\"startTime\\":\\"0:00:07\\",\\"endTime\\":\\"0:00:12.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:02\\",\\"endTime\\":\\"0:00:06.04\\"},{\\"startTime\\":\\"0:00:12\\",\\"endTime\\":\\"0:00:12.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:03\\",\\"endTime\\":\\"0:00:05.04\\"},{\\"startTime\\":\\"0:00:12\\",\\"endTime\\":\\"0:00:12.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:08\\",\\"endTime\\":\\"0:00:10.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:00\\",\\"endTime\\":\\"0:00:01.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:00\\",\\"endTime\\":\\"0:00:00.04\\"},{\\"startTime\\":\\"0:00:14\\",\\"endTime\\":\\"0:00:14.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:10\\",\\"endTime\\":\\"0:00:10.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:11\\",\\"endTime\\":\\"0:00:11.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:11\\",\\"endTime\\":\\"0:00:11.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:11\\",\\"endTime\\":\\"0:00:11.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:11\\",\\"endTime\\":\\"0:00:11.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:11\\",\\"endTime\\":\\"0:00:11.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "APPEARANCES", "data_length": 0, "description": "Label Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "name": "Sentiments", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 114, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.ID", "name": "Sentiment Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "ID", "data_length": 40, "description": "Sentiment Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.NAME", "name": "Sentiment Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "NAME", "data_length": 40, "description": "Sentiment Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.APPEARANCES", "name": "Sentiment Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "APPEARANCES", "data_length": 0, "description": "Sentiment Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.SEEN.DURATION.RATIO", "name": "Sentiment Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Sentiment Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "name": "Keywords", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 115, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.ID", "name": "Keyword Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "ID", "data_length": 40, "description": "Keyword Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.NAME", "name": "Keyword Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "NAME", "data_length": 40, "description": "Keyword Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.APPEARANCES", "name": "Keyword Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Keyword Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "name": "Faces", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 111, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.ID", "name": "Face Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Face Id", "values": [{"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 1}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 2}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 3}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 4}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 5}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 6}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "ID", "data_length": 40, "description": "Face Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.NAME", "name": "Face Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Unknown #2"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Face Name", "values": [{"value": {"type": "string", "value": "Unknown #2"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "Unknown #1"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "Unknown #3"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "Unknown #4"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "Unknown #5"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "Unknown #6"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "Unknown #7"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "NAME", "data_length": 40, "description": "Face Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.TITLE", "name": "Face Title", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Face Title", "values": [{"is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "TITLE", "data_length": 249, "description": "Face Title", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.DESCRIPTION", "name": "Face Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Face Description", "values": [{"is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Face Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.APPEARANCES", "name": "Face Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:01.76\\",\\"endTime\\":\\"0:00:12.76\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Face Appearances", "values": [{"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:01.76\\",\\"endTime\\":\\"0:00:12.76\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:00\\",\\"endTime\\":\\"0:00:06\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:05.04\\",\\"endTime\\":\\"0:00:10.44\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:11.6\\",\\"endTime\\":\\"0:00:12.76\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:11.6\\",\\"endTime\\":\\"0:00:12.76\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:04.16\\",\\"endTime\\":\\"0:00:05.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:06.96\\",\\"endTime\\":\\"0:00:07.6\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "APPEARANCES", "data_length": 0, "description": "Face Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SPEAKER.FACE.ID", "name": "Video Speaker Object Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "72df9d0acd51a93ab4d16acc78b832084152ecdc"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Speaker Object Id", "values": [{"value": {"type": "string", "value": "72df9d0acd51a93ab4d16acc78b832084152ecdc"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "2b183dff0af2adc3bbdb1a3fa1e83362dc7b5d31"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "498fab2d60d2d8ad6767bb52b04fac8a2257c948"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "7f7e128ed3137d67e150ab77df6f1c9ac174d1f8"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "c78d30f8123e4f0db71ff609ebb7c263420a90d0"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "d8a3ff4e00b17c8b62d6fc1edd57dd34ae907029"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "2375333f3f58da6f00363b6f6f08643be55f9715"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "THUMBNAIL_OBJECT_ID", "data_length": 40, "description": "Video Speaker Object Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.SEEN.DURATION.RATIO", "name": "Face Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "0.7324"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Face Seen Duration Ratio", "values": [{"value": {"type": "string", "value": "0.7324"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0.3995"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0.3595"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0.0799"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0.0799"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0.0533"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0.0399"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "SEEN_DURATION_RATIO", "data_length": 20, "description": "Face Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "name": "Brands", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 112, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.ID", "name": "Video Brand Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Brand Id", "values": [{"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "ID", "data_length": 40, "description": "Brand Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.NAME", "name": "Video Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Brand Name", "values": [{"value": {"type": "string", "value": "Nutella"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Brand Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.DESCRIPTION", "name": "Video Brand Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella is the brand name of a sweetened hazelnut cocoa spread. Manufactured by the Italian company Ferrero, it was introduced to the market in 1964. Pietro Ferrero, who owned a bakery in Alba, Piedmont, an area known for the production of hazelnuts, sold an initial batch of 300 kilograms (660 lb) of \\"Pasta Gianduja\\" in 1946."}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Brand Description", "values": [{"value": {"type": "string", "value": "Nutella is the brand name of a sweetened hazelnut cocoa spread. Manufactured by the Italian company Ferrero, it was introduced to the market in 1964. Pietro Ferrero, who owned a bakery in Alba, Piedmont, an area known for the production of hazelnuts, sold an initial batch of 300 kilograms (660 lb) of \\"Pasta Gianduja\\" in 1946."}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Brand Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.WIKIURL", "name": "Video Brand Wiki URL", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "http://en.wikipedia.org/wiki/Nutella"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Brand Wiki URL", "values": [{"value": {"type": "string", "value": "http://en.wikipedia.org/wiki/Nutella"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "WIKIURL", "data_length": 200, "description": "Brand Wiki URL", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.APPEARANCES", "name": "Video Brand Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:11\\",\\"endTime\\":\\"0:00:14.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Brand Appearances", "values": [{"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:11\\",\\"endTime\\":\\"0:00:14.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Brand Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.SEEN.DURATION.RATIO", "name": "Video Brand Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "0.2"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Brand Seen Duration Ratio", "values": [{"value": {"type": "string", "value": "0.2"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Brand Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "name": "Speeches", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 116, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.ID", "name": "SpeechText Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "SpeechText Id", "values": [{"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 1}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 2}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 3}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 4}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "ID", "data_length": 40, "description": "SpeechText Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXT", "name": "Speech Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "FOR SANTA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Speech Text", "values": [{"value": {"type": "string", "value": "FOR SANTA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "FOR MY LiTTLE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "ELVES!"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "nutella"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "share the love this christmas with nutella"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXT", "data_length": 1000, "description": "Speech Text", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXTTYPE", "name": "Speech Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "OCR"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Speech Type", "values": [{"value": {"type": "string", "value": "OCR"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "OCR"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "OCR"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "OCR"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "OCR"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXTTYPE", "data_length": 40, "description": "Speech Type", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.START TIME", "name": "Speech Start Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "0:00:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Speech Start Time", "values": [{"value": {"type": "string", "value": "0:00:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:11"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:11"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:11"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:13"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "START_TIME", "data_length": 40, "description": "Speech Start Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.END TIME", "name": "Speech End Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "0:00:01.04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Speech End Time", "values": [{"value": {"type": "string", "value": "0:00:01.04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:11.04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:11.04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:11.04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:14.04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "END_TIME", "data_length": 40, "description": "Speech End Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "name": "Speakers", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 122, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.ID", "name": "Speaker Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "ID", "data_length": 40, "description": "Speaker Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.NAME", "name": "Speaker Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "NAME", "data_length": 100, "description": "Speaker Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.APPEARANCES", "name": "Speaker Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "APPEARANCES", "data_length": 0, "description": "Speaker Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.FIELDGROUP.LOCALASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200057, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1239, "metadata_element_list": [{"id": "FERRERO.FIELD.COUNTRY", "name": "LOCAL COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "LOCAL COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USER", "name": "USER", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "USER", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_USER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.ASSOCIATION", "name": "TYPE OF ASSOCIATION", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "TYPE OF ASSOCIATION", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_ASSOCIATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.VALUE", "name": "VALUE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "VALUE", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_VALUE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}], "has_multilingual_fields": false}, "mime_type": "video/mp4", "path_list": [{"parents": [{"id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "sequence_number": 0}, {"id": "847c0ede25c32edd97546221fe54fb392431848d", "name": "NUTELLA XMAS - PL ADAPTATION 3", "container_state": "NORMAL", "original_uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "sequence_number": 0}, {"id": "20c88462ba3557e7aae759665cbe331f693d398a", "name": "02. Campaigns", "container_state": "NORMAL", "original_uoi_id": "20c88462ba3557e7aae759665cbe331f693d398a", "sequence_number": 0}, {"id": "1638869b9b347c39842effc7e5ff965de47e8e65", "name": "01.Standard", "container_state": "NORMAL", "original_uoi_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "sequence_number": 0}, {"id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "name": "01.Poland", "container_state": "NORMAL", "original_uoi_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "sequence_number": 0}, {"id": "341bbf240ea033435cc225cd1add5c009bc067d7", "name": "PL", "container_state": "NORMAL", "original_uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "sequence_number": 0}, {"id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "name": "01. PL - Nutella", "container_state": "NORMAL", "original_uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "sequence_number": 0}, {"id": "5353bb35177d792b073acc634e010df2908fde32", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 3, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "103a6545e38f07f6e989a86c6ee7e10339a71a14", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "103a6545e38f07f6e989a86c6ee7e10339a71a14", "sequence_number": 0}, {"id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "name": "NUTELLA - CHRISTMAS 26 E2E", "container_state": "NORMAL", "original_uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "sequence_number": 0}, {"id": "413c776f4416163b88737d53bb72dfe23bfd2430", "name": "Global", "container_state": "NORMAL", "original_uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 4, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "sequence_number": 0}, {"id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "name": "Oliver Read Only", "container_state": "NORMAL", "original_uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "sequence_number": 0}, {"id": "23b155c32d5c6142914b41458234c100812bbec8", "name": "Oliver", "container_state": "NORMAL", "original_uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "sequence_number": 0}, {"id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "name": "Z - Exchange", "container_state": "NORMAL", "original_uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "sequence_number": 0}], "complete": true, "sequence_number": 3, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}], "creator_id": "1003", "asset_state": "NORMAL", "checked_out": false, "folder_path": "", "content_size": 39659656, "content_type": "VIDEO", "content_state": "NORMAL", "date_imported": "2025-11-11T17:12:23.087+01:00", "import_job_id": 216821, "streaming_url": "https://ppr.dam.ferrero.com/video/data/repository/original/vol0/224/9e8d3c3cb542301100e0a21afeede678d6f448f6_proxy.mp4", "subscribed_to": false, "collection_ids": [], "latest_version": true, "legacy_model_id": 116, "content_editable": true, "content_sub_type": "WHOLE", "import_user_name": "bizAdmin", "date_last_updated": "2025-11-11T17:19:05.06+01:00", "metadata_model_id": "ECOMMERCE", "original_asset_id": "a6d042144bd706efc71c3e57c061b39775dcb74c", "rendition_content": {"preview_content": {"id": "86376b2026741a7e60b3448432d1774600c6c572", "url": "/otmmapi/v6/renditions/86376b2026741a7e60b3448432d1774600c6c572", "name": "311NUTELLAXMASShareTheLoveGlas15sTVC16b9v01328ENMASTER.mp4", "width": 640, "height": 360, "mime_type": "video/mp4", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "PREVIEW", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\224\\\\9e8d3c3cb542301100e0a21afeede678d6f448f6_proxy.mp4", "content_size": 1721977, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "thumbnail_content": {"id": "0a3f9cceca9fc99ff0aae97024e812ee05a40e29", "url": "/otmmapi/v6/renditions/0a3f9cceca9fc99ff0aae97024e812ee05a40e29", "name": "0a3f9cceca9fc99ff0aae97024e812ee05a40e29.jpg", "width": 500, "height": 282, "mime_type": "image/jpeg", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "THUMBNAIL", "content_path": "data\\\\repository\\\\thumb\\\\vol0\\\\198\\\\0a3f9cceca9fc99ff0aae97024e812ee05a40e29_0a3f9cceca9fc99ff0aae97024e812ee05a40e29.jpg", "content_size": 18485, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "video_rollover_content": {"id": "31a3c7cd354435e9acd9526f6ad41b4cc135bc99", "url": "/otmmapi/v6/renditions/31a3c7cd354435e9acd9526f6ad41b4cc135bc99", "name": "311NUTELLAXMASShareTheLoveGlas15sTVC16b9v01328ENMASTER.GIF", "width": 500, "height": 282, "mime_type": "image/gif", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "ROLLOVER", "content_path": "data\\\\repository\\\\rollover\\\\vol0\\\\16\\\\31a3c7cd354435e9acd9526f6ad41b4cc135bc99_rollover.gif", "content_size": 8143010, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_content_info": {"master_content": {"id": "83f0c62f35610a275494d0102fa7112426010786", "url": "/otmmapi/v6/renditions/83f0c62f35610a275494d0102fa7112426010786", "name": "311NUTELLAXMASShareTheLoveGlas15sTVC16b9v01328ENMASTER.mp4", "width": -1, "height": -1, "mime_type": "video/mp4", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\224\\\\311NUTELLAXMASShareTheLoveGlas15sTVC16b9v01328ENMASTER_83f0c62f35610a275494d0102fa7112426010786.mp4", "content_size": 39659656, "unit_of_size": "BYTES", "content_checksum": "cf0a153e1366267bc3427c0045106947", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "supporting_content": [{"id": "9e8d3c3cb542301100e0a21afeede678d6f448f6", "url": "/otmmapi/v6/renditions/9e8d3c3cb542301100e0a21afeede678d6f448f6", "name": "311NUTELLAXMASShareTheLoveGlas15sTVC16b9v01328ENMASTER.mp4", "width": 640, "height": 360, "mime_type": "video/mp4", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "SUPPORTING", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\224\\\\9e8d3c3cb542301100e0a21afeede678d6f448f6_proxy.mp4", "content_size": 1721977, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}]}, "asset_state_user_id": "1003", "master_content_info": {"id": "83f0c62f35610a275494d0102fa7112426010786", "url": "/otmmapi/v6/renditions/83f0c62f35610a275494d0102fa7112426010786", "name": "311NUTELLAXMASShareTheLoveGlas15sTVC16b9v01328ENMASTER.mp4", "width": -1, "height": -1, "mime_type": "video/mp4", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\224\\\\311NUTELLAXMASShareTheLoveGlas15sTVC16b9v01328ENMASTER_83f0c62f35610a275494d0102fa7112426010786.mp4", "content_size": 39659656, "unit_of_size": "BYTES", "content_checksum": "cf0a153e1366267bc3427c0045106947", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "delivery_service_url": "https://ppr.dam.ferrero.com/adaptivemedia/rendition?id=a6d042144bd706efc71c3e57c061b39775dcb74c", "product_associations": false, "security_policy_list": [{"id": 5467, "name": "Marketing Viewer", "status": "NORMAL", "created_by": "1003", "create_date": "2023-10-06T16:52:07.297+02:00", "description": "Marketing Viewer", "ownership_type": "PUBLIC"}], "thumbnail_content_id": "0a3f9cceca9fc99ff0aae97024e812ee05a40e29", "content_state_user_id": "1003", "content_state_user_name": "OTMM BusinessAdmin", "asset_lock_state_user_id": "1001", "metadata_state_user_name": "OTMM BusinessAdmin", "progressive_download_url": "https://ppr.dam.ferrero.com/video/data/repository/original/vol0/224/9e8d3c3cb542301100e0a21afeede678d6f448f6_proxy.mp4", "access_control_descriptor": {"permissions_map": {"entry": [{"key": "text.securityPolicy.permission.Custom04Permission", "value": true}, {"key": "text.securityPolicy.permission.ContentEditPermission", "value": true}, {"key": "text.securityPolicy.permission.AssetViewPermission", "value": true}, {"key": "text.securityPolicy.permission.ProjectViewPermission", "value": true}, {"key": "text.securityPolicy.permission.MembershipEditPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom03Permission", "value": true}, {"key": "text.securityPolicy.permission.MetaDataEditPermission", "value": true}, {"key": "text.securityPolicy.permission.EditParentsPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom02Permission", "value": true}, {"key": "text.securityPolicy.permission.ExportPermission", "value": true}, {"key": "text.securityPolicy.permission.SummaryViewPermission", "value": true}, {"key": "text.securityPolicy.permission.PreviewViewPermission", "value": true}, {"key": "text.securityPolicy.permission.SubscribePermission", "value": true}, {"key": "text.securityPolicy.permission.DeleteAssetPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom01Permission", "value": true}]}}, "content_lock_state_user_id": "1003", "asset_state_last_update_date": "2025-11-11T17:19:05.06+01:00", "content_lock_state_user_name": "bizAdmin", "metadata_lock_state_user_name": "tsuper", "content_state_last_update_date": "2025-11-11T17:12:23.673+01:00", "inherited_metadata_collections": [{"container_id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "container_name": "00. Master Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "originator_id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00. Master Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "847c0ede25c32edd97546221fe54fb392431848d", "container_name": "NUTELLA XMAS - PL ADAPTATION 3", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA XMAS - PL ADAPTATION 3"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000599"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA_XMAS_-_PL_A_JV_LA_PL_NUT_0000599"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CHRISTMAS"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local adaptation of global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000576"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2021/2022"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "A1"}, "display_value": "Local Campaign ready for localization", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.DEPARTMENTNAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "20c88462ba3557e7aae759665cbe331f693d398a", "container_name": "02. Campaigns", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "20c88462ba3557e7aae759665cbe331f693d398a", "originator_id": "20c88462ba3557e7aae759665cbe331f693d398a", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "02. Campaigns"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "container_name": "01.Standard", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "originator_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "01.Standard"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "container_name": "01.Poland", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "originator_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "01.Poland"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "container_name": "PL", "container_type_id": "GLOBALMARKETUNIT", "container_type_name": "L6 - MARKET UNIT", "inherited_metadata_values": [{"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "b94dd71b732e3c1df6ae63216c53d4d4b0e7f002"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E39"}, "display_value": "POLAND", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "13063087b81ea172db42e69ed8e8fa013cd5bfe0"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Local PL Editable Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "bf49ba2a40d0d0dccee4d5de7381659b106dd89a"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Nutella Local PL Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "3c0070e420882e3e18f6097811cb60a67239003b"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "7f3c1933b61e900457ea6e2aab750303882873d4"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "b0c960759e48c0fcdcb650417179a614da95e866"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Local PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "6f603fcc63415e266dc35cf2314d31357a2966bf"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "495fa4f08769a021cfa907dfb7a903fade9bd19a"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "e3b647e172a89e1e7cbdd2964faff1bca8dcf520"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "6870cca056b54cd400a9fbd4fe75513e69cedcdd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "container_name": "01. PL - Nutella", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "5efe2981e6f9afca7ed3fc91a171f02162ef23e3"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E008"}, "display_value": "POLAND", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Local PL Editable Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0de507c8b9d1f5942b6376b6c2a2b3ec1097e42e"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E39"}, "display_value": "POLAND", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "ca70a6d55e4277ecbef2a01a593c614501cbcf74"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "3e9d669ab1047383d0416ba40af75744148c94c8"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0e241fc386dcd91baa31a409e297169fe4a352c2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "2e3e0f2be0e487b540d9b63cb8c0e9ed9c6b1bb6"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "359c98154f230a60acc6b4eb048e129411d7a778"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "e92f9f10c0c29dda8261218c2c72a0baa66472f2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "15dff42c3b196ba3ae5b3c2ea33f00e347e6f654"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0ae044cd9dddf86cd9406c9edc3996b18c430be0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "name": "AMMC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AMMC", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LOCAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "7806fed6127b50c21f6b03e1f7b63f3dedc1e8d1"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "4c8a2d6e178638bfacfeaf3f7f6f1000304693a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "name": "Product Asset Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Asset Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCT_ASSET_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "5353bb35177d792b073acc634e010df2908fde32", "container_name": "EU", "container_type_id": "GEOGRAPHYLOCAL", "container_type_name": "L4 - GEOGRAPHY LOCAL", "inherited_metadata_values": [{"id": "FERRERO.MARKET.FOLDER.GLOBAL", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "4c4d4bf36bf8b1ace55f990e78d6332a9cb20990"}, "metadata_element": {"id": "FERRERO.MARKET.FOLDER.GLOBAL", "name": "Global/Local (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "LOCAL"}, "display_value": "Local", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local (Marketing)", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "GLOBALLOCAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_AREA", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "3dc200c993ab8263952dc6da1498026f615f45dd"}, "metadata_element": {"id": "MARKETING_AREA", "name": "AREA", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E010"}, "display_value": "EUROPE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "AREA", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "AREA", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "AREA", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "dc7749c3e113ec9e0b9e9a3840ea55673ca5e49f"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "f2d658a3829c2ea158ae70a4b4e7928bcf88f8e2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "972d0258a82de85672bd84d8af68cdb67ad3d3ca"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "1212505ad3fe4c9d7458568f3d95aeb4c4e5c37e"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "9d1dfdef55ff7a3eb03552988ddf729c7a0f5107"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "54f006eeb366121a29ee98da33d437615dcd34e0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "1fd8802010e30d44cebb2f3eb090b12ac550f97d"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "be0dc9a87262ee7fd165237b531ba3b7aa93a260"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "2f99f0f0f9e43fb34df9222c8b73a86fb78e473e"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "container_name": "Nutella", "container_type_id": "GLOBALBRAND", "container_type_name": "L3 - BRAND", "inherited_metadata_values": [{"id": "FERRERO.TABULAR.NEW.BRAND", "tabular": true, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "9bb1c183135f5240f09132aef59c4ea48c762381"}, "metadata_element": {"id": "FERRERO.TABULAR.NEW.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF30"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND (Marketing)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF30"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "BRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TABULAR_BRAND", "column_name": "BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.NEW.BRAND", "parent_table_name": "BRAND (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "tabular": true, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "a37b13c02cba799378211e17b73234a0d836f9b6"}, "metadata_element": {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "JV"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND(HARMONIZED)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "JV"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.HARMONIZEDBRAND", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_HARMONIZEDBRAND", "column_name": "HARMONIZEDBRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.HARMONIZEDBRAND", "parent_table_name": "BRAND(HARMONIZED)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "AGENCY.COLLABORATION", "tabular": false, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "183d6e0957a9940f9b18ef44f46d957802b63397"}, "metadata_element": {"id": "AGENCY.COLLABORATION", "name": "Agency collaboration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency collaboration", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "AGENCY_COLLABORATION", "column_name": "AGENCY_COLLABORATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "AGENCY.SHARING", "tabular": false, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "d0e2b725ddfdc452cc3ba750bbe8ec059c6b01ba"}, "metadata_element": {"id": "AGENCY.SHARING", "name": "Agency sharing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency sharing", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "AGENCY_SHARING", "column_name": "AGENCY_SHARING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "CONTENT.SCALING.AGENCYNAME", "tabular": false, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "f9dfa695cc5ef8cd3fafada4e44cfdaa1522d58a"}, "metadata_element": {"id": "CONTENT.SCALING.AGENCYNAME", "name": "Content Scaling agency name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Scaling agency name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENTSCALING_AGENCYNAME", "column_name": "CONTENTSCALING_AGENCYNAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "container_name": "01. Nutella Core", "container_type_id": "GLOBALSUBCATEGORY", "container_type_name": "L2 - SUBCATEGORY", "inherited_metadata_values": [{"id": "MARKETING_SUBCATEGORY", "tabular": false, "value_id": {"uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "originator_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "inherited_field_id": "3000ad591e09b5c75f85fc2ccbb9ebeb31b3ab78"}, "metadata_element": {"id": "MARKETING_SUBCATEGORY", "name": "SUBCATEGORY", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Mart-Nutella-Core"}, "display_value": "Nutella Core", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "SUBCATEGORY", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "SUBCATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "SUBCATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "tabular": true, "value_id": {"uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "originator_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "inherited_field_id": "2c751ce760d88c0e271925ea5149348106944bfa"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Subcategory Owner", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_SUBCATEGORY_OWNER_TM", "column_name": "SUBCATEGORY_OWNER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "parent_table_name": "Subcategory Owner", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "container_name": "Nutella", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "originator_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E04"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "originator_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final Approver BPS ", "values": [{"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "103a6545e38f07f6e989a86c6ee7e10339a71a14", "container_name": "05. Final Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "103a6545e38f07f6e989a86c6ee7e10339a71a14", "originator_id": "103a6545e38f07f6e989a86c6ee7e10339a71a14", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "05. Final Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "container_name": "NUTELLA - CHRISTMAS 26 E2E", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA - CHRISTMAS 26 E2E"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000576"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA_-_CHRISTMA_JV_GL_MLT_NUT_0000576"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "BE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "BE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "BG"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "EE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "LT"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "LU"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "LV"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "MD"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "NL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "RO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2025/2026"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "B2"}, "display_value": "Master campaign received from Agency", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.DEPARTMENTNAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "container_name": "Global", "container_type_id": "GEOGRAPHYGLOBAL", "container_type_name": "L4 - GEOGRAPHY GLOBAL", "inherited_metadata_values": [{"id": "FERRERO.MARKET.FOLDER.GLOBAL", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "963db123044a8d3ff5d8f4aac56d35df77a7656c"}, "metadata_element": {"id": "FERRERO.MARKET.FOLDER.GLOBAL", "name": "Global/Local (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "GLOBAL"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local (Marketing)", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "GLOBALLOCAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_AREA", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "3a37ace6a53a93799e0e18773ba6c7e70305cc78"}, "metadata_element": {"id": "MARKETING_AREA", "name": "AREA", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AREA", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "AREA", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "AREA", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "9f64f884b41d2a8445f4d9cd60714e91024e8b13"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Global Editable Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "8847a6dfbebcf323a8170649b390af1a375c08b8"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Nutella Global Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "758e614412f11ecb58446966d328974daf253446"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "53df9e81ae46cf6bd2440643426224b1fb904aeb"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "name": "Published Security Policy - Restricted Visibility", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Global Published Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Security Policy - Restricted Visibility", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_VISIBILITY_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "6b410cc3e966037a3e534da53137d32856cd6bdb"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "b5f185da6208925fe296e074dbdfdd74678ad076"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "b9e4bba5fa277862093047710c3fccb44a553f91"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "a70b94dccf12d05fbcf6a1881e4726759d8714a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "134e6810dec03aed0a70f68bf16cdd3a390f99de"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "2c412cc87805c4f03622e671cd7cdd65402b5598"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "0f4d4a35b08b4d2aac7ce7cc18999a8e5f523edf"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.GLOBAL APPROVER", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "43af18c983afd26a477317ac0b608495d9e0b3df"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.GLOBAL APPROVER", "name": "Global approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "GLOBAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "00dacbe20687d3c5d0be9b4fc2997c572e3c36bf"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "0fbcf70c95f5d28645e7a6187f7c429d62e60380"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Global comm"}, "display_value": "Global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Global comm"}, "display_value": "Global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "container_name": "Oliver Read Only", "container_type_id": "L3 - Agency Structure", "container_type_name": "L3 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "55530f721f18c847e35d7c828edf53461b5014b0"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "330bb6f68316aab5c45f9fe34e047cce573c67cc"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "name": "Agency Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "AGENCY_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "e30e90d694f9935d4c15c4c78891beed8853a272"}, "metadata_element": {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "name": "Published Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "PUBLISHED_ASSET_SP_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "23b155c32d5c6142914b41458234c100812bbec8", "container_name": "Oliver", "container_type_id": "L2 - Agency Structure", "container_type_name": "L2 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.AGENCY", "tabular": false, "value_id": {"uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "originator_id": "23b155c32d5c6142914b41458234c100812bbec8", "inherited_field_id": "48fcbc397986aca5bb8722a95197dd0a46f19b4e"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_AGENCY", "column_name": "AGENCY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "container_name": "Z - Exchange", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "YY"}, "display_value": "AGENCIES", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Final Approver BPS ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}], "asset_lock_state_last_update_date": "2025-11-13T14:26:32.707+01:00", "content_lock_state_last_update_date": "2025-11-11T17:12:28.833+01:00"}, "language_code": null, "language_name": null, "subject_title": null, "file_extension": ".mp4", "asset_type_name": null, "file_size_bytes": null, "duration_seconds": null, "upload_directory": "95c935af7e32719e82ee47bcae9cf772c01b51fa", "local_campaign_id": "C000000599", "original_filename": "311NUTELLAXMASShareTheLoveGlas15sTVC16b9v01328ENMASTER", "global_master_folder_id": "847c0ede25c32edd97546221fe54fb392431848d", "global_master_campaign_id": "C000000576"} 2025-11-21 03:23:20.943566 \N 6 ffRgja master_asset_created {"id": 6, "tags": null, "status": "active", "width_px": null, "height_px": null, "mime_type": "image/png", "asset_type": null, "brand_code": null, "brand_name": null, "categories": null, "created_at": "2025-11-21T03:23:24.404226", "deleted_at": null, "is_deleted": false, "updated_at": "2025-11-21T03:23:24.404226", "description": "Box File ID: 2052714116516\\nBox URL: https://app.box.com/file/2052714116516\\nDAM Asset ID: b6cb6550aa23d9d98b78459df26ca2d6a563b842", "ingested_at": "2025-11-21T03:23:24.404226", "ingested_by": null, "opentext_id": "b6cb6550aa23d9d98b78459df26ca2d6a563b842", "tracking_id": "ffRgja", "aspect_ratio": null, "country_code": null, "country_name": null, "full_metadata": {"name": "N_nutella_outline.png", "links": {"links": [], "source_id": "b6cb6550aa23d9d98b78459df26ca2d6a563b842"}, "locked": false, "deleted": false, "expired": false, "version": 1, "asset_id": "b6cb6550aa23d9d98b78459df26ca2d6a563b842", "metadata": {"id": "ECOMMERCE", "name": "Marketing Asset", "type": "com.artesia.metadata.MetadataModel", "legacy_id": 116, "metadata_element_list": [{"id": "FERRERO.CATEGORY.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200054, "metadata_element_list": [{"id": "FERRERO.FIELD.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Status", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.CONTENT_STATUS", "edit_type": "COMBO_NOTNULL", "facetable": false, "searchable": true, "table_name": "FERRERO_CONTENT_STATUS_MD", "column_name": "CONTENT_STATUS", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9215, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRER.CATEGORY.ASSET_INFO", "name": "Asset Info", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200022, "metadata_element_list": [{"id": "FERRERO.FIELD.MKTG.ASSET TYPE", "name": "Asset Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "visualidentityelements"}, "display_value": "Visual Identity Elements", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.ASSETTYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.FISCAL YEAR", "name": "Release Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2025/2026"}, "display_value": "2025/2026", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Release Fiscal Year", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_DOMAIN_FISCAL_YEAR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "FISCAL__YEAR", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "name": "Main Languages", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1210, "metadata_element_list": [{"id": "MAIN_LANGUAGES", "name": "MAIN LANGUAGES", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "MAIN LANGUAGES", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MAIN LAGUAGES_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MAIN_LANGUAGE_TABLE", "column_name": "MAIN_LANGUAGE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "parent_table_name": "Main Languages", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.ASSET DESCRIPTION", "name": "Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Description", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "DESCR", "data_length": 249, "description": "Descriptive information", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.FLAVOUR", "name": "Flavour", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Flavour", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.FLAVOUR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FLAVOUR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.SIZE", "name": "Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Size", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.SIZE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SIZE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1241, "metadata_element_list": [{"id": "FERRERO.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Compliance", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ASSETCOMPLIANCE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_COMPLIANCE", "column_name": "ASSET_COMPLIANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "parent_table_name": "Asset Compliance", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.TAG DETAILS", "name": "Tag Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 118, "metadata_element_list": [{"id": "ARTESIA.FIELD.TAG", "name": "Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "design", "field_value": {"type": "string", "value": "design"}, "display_value": "design", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Tag", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "design", "field_value": {"type": "string", "value": "design"}, "display_value": "design", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "text", "field_value": {"type": "string", "value": "text"}, "display_value": "text", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "graphic", "field_value": {"type": "string", "value": "graphic"}, "display_value": "graphic", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "typography", "field_value": {"type": "string", "value": "typography"}, "display_value": "typography", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "symbol", "field_value": {"type": "string", "value": "symbol"}, "display_value": "symbol", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "logo", "field_value": {"type": "string", "value": "logo"}, "display_value": "logo", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "illustration", "field_value": {"type": "string", "value": "illustration"}, "display_value": "illustration", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "font", "field_value": {"type": "string", "value": "font"}, "display_value": "font", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "vector graphics", "field_value": {"type": "string", "value": "vector graphics"}, "display_value": "vector graphics", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.TAGS", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "OTMM_TAGS", "column_name": "TAG", "data_length": 80, "description": "Tag", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG CONFIDENCE", "name": "Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 97.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Confidence", "values": [{"value": {"type": "decimal", "value": 97.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 91.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 91.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 83.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 70.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 54.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 54.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 54.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 25.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Confidence", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG TYPE", "name": "Tag Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Tag Type", "values": [{"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "TAG_TYPE", "data_length": 10, "description": "Tag Type", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED BY", "name": "Associated By", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Associated By", "values": [{"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_BY", "data_length": 10, "description": "Associated By", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED DATE", "name": "Associated Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-11-12T16:12:27.403+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Associated Date", "values": [{"value": {"type": "dateTime", "value": "2025-11-12T16:12:27.403+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-11-12T16:12:27.403+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-11-12T16:12:27.403+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-11-12T16:12:27.403+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-11-12T16:12:27.403+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-11-12T16:12:27.407+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-11-12T16:12:27.407+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-11-12T16:12:27.407+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-11-12T16:12:27.407+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_DATE", "data_length": 10, "description": "Associated Date", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.STATE", "name": "Global/Local", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "GLOBAL"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO_NOTNULL", "facetable": true, "searchable": true, "table_name": "FERRERO_IC_ASSET_DETAILS", "column_name": "ASSET_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.ASPECT RATIO", "name": "Aspect Ratio (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio (Marketing)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASPECT_RATIO", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASPECT_RATIO", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "name": "Tag (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1222, "metadata_element_list": [{"id": "MARKETING_TAG", "name": "Marketing Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Marketing Tag", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.DOMAIN.TAG", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TAG_MARKET", "column_name": "TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "parent_table_name": "Tag (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.TAGS", "name": "Auto-Generated Tags", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Auto-Generated Tags", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "AUTO_GENERATED_TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CERTIFIER", "name": "Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approver", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.MARKETING.FIELD.APPROVAL DATE", "name": "Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.LEGAL APPROVAL DATE", "name": "Legal Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CERTIFIER", "name": "IA&CC Certifier", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Certifier", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CC APPROVAL DATE", "name": "IA&CC Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "name": "Extended Approval", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1230, "metadata_element_list": [{"id": "FERRERO.FIELD.EXTENDED.APPROVAL", "name": "Extended Approval required by:", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended Approval required by:", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COMMENTS", "name": "Comment", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comment", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "COMMENTS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.DATE", "name": "Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USERS", "name": "User ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "User ID", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "USERS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXTENDED.JOBID", "name": "Extended JobID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended JobID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.MIGRATION.INDEX", "name": "Migration Index", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Migration Index", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MIGRATION.INDEX", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MIGRATION_INDEX", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "FERRERO_MARKET_MARKETING_CREATOR", "name": "Marketing Creator", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Marketing Creator", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.CREATOR", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MARKETING_CREATOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "ARTESIA.FIELD.IS LATEST VERSION", "name": "Is Latest Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Y"}, "display_value": "Yes", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Is Latest Version", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.YES_NO", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "IS_LATEST_VERSION", "data_length": 1, "description": "Is this the latest version? (Y/N)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET VERSION", "name": "Asset Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 1}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Version", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "INTEGER", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "VERSION", "data_length": 12, "description": "Version number of asset", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET_ID", "name": "Asset ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "b6cb6550aa23d9d98b78459df26ca2d6a563b842"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset ID", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "LOGICAL_UOI_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.ECOMMERCE STATUS", "name": "Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "PUBLISHED"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Status", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "ASSET_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CREATOR", "name": "Uploaded by", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Uploaded by", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_USER_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.FIELD.CREATION DATE", "name": "Upload Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-11-12T16:11:38.94+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Upload Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_DT", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.ASSET NAME", "name": "Asset Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "N_nutella_outline.png"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Name", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "description": "Original name of master object", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.CONTENT TYPE", "name": "Content Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "BITMAP"}, "display_value": "Image", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Type", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.CONTENT_TYPES", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "CONTENT_TYPE", "data_length": 8, "description": "Content Type", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.MIME TYPE", "name": "File Extension", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "image/png"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Extension", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_MIME_TYPE", "data_length": 80, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.FILE.SIZE", "name": "File Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "long", "value": 29041}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Size", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "LONG", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_SIZE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP RESOLUTION", "name": "Bitmap Resolution", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 300}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Resolution", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_RESOLUTION", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP WIDTH", "name": "Bitmap Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 1875}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Width", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_WIDTH", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP HEIGHT", "name": "Bitmap Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 1828}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Height", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_HEIGHT", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.VIDEO.BIT_RATE", "name": "Bitrate", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitrate", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "BIT_RATE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.EMBEDDED.FIELD.DURATION", "name": "Duration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Duration", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "DURATION_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.ASPECT RATIO", "name": "Aspect Ratio", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "ASPECT_RATIO", "data_length": 30, "displayable": false, "instructions": "ASPECT_RATIO", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME HEIGHT", "name": "Frame Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Height", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_HEIGHT", "data_length": 12, "displayable": true, "instructions": "FRAME_HEIGHT", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME WIDTH", "name": "Frame Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Width", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_WIDTH", "data_length": 12, "displayable": true, "instructions": "FRAME_WIDTH", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.ASPECT.RATIO.POC", "name": "Aspect Ratio(POC)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio(POC)", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASPECT_RATIO_TABLE", "column_name": "ASPECT_RATIO", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "PRODUCT.DETAILS", "name": "Product Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200029, "metadata_element_list": [{"id": "FERRERO.TABLE.EANCODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1208, "metadata_element_list": [{"id": "EAN_CODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "EAN CODE/ 77 CODE", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "EAN.CODE", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "EAN_CODE", "column_name": "EAN_CODE_DESCRIPTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "COUNTRY", "name": "COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "EAN_CODE", "column_name": "COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKETING.ADVANCE.PRODUCT.LINK", "name": "Asset-to-product relation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset-to-product relation", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_MARKETING_ADVANCE_PRODUCT_LINK", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ADVANCE_PRODUCT_LINK", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 10182, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.SUB BRAND", "name": "Sub-Brands", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Sub-Brands", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.SUBBRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "SUB_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT WEIGHT", "name": "Product Weight", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Weight", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_WEIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.CONSUMER UNIT PACKAGING", "name": "Consumer Unit Packaging", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Consumer Unit Packaging", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PACK", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "CONSUMER_UNIT_PACKAGING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.4 DIGIT CODE", "name": "4 Digit Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "4 Digit Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "DIGITCODE", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERREO.ECOM.RETAILER_SPECIFIC_FIELD", "name": "Retailer Specific", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Retailer Specific", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "RETAILER_SPECIFIC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "cascading_group_id": "FERRERO.RETAILER.SPECIFIC", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY START PERIOD", "name": "Asset validity start period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity start period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_STARTING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY END PERIOD", "name": "Asset validity end period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity end period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_ENDING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.ASSET.NAMING.CONVENTION", "name": "Does asset need GS1 naming convention", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Does asset need GS1 naming convention", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASSETNAMINGCONVENTION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_NAMING_CONVENTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9515, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT VIEW", "name": "Product View", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product View", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT VIEW", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_VIEW", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT ANGLE", "name": "Product Angle", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Angle", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT.ANGLE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_ANGLE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT STATE", "name": "Product State", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product State", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT STATE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PROMOTION ID", "name": "Promo ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Promo ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROMO_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.BUSINESS.ASSET TYPE", "name": "Asset Type (eDAM)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Type (eDAM)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "OTMM.DOMAIN.OTMM_ASSETTYPE_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_BUSINESS_INFO", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7244, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200048, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.AGENCY NAME", "name": "Agency Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Agency Name", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.AGENCY_NAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AGENCY_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7336, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.CREATIX", "name": "CreativeX", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200059, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.CREATIVEX", "name": "Confidence", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1245, "metadata_element_list": [{"id": "FERRERO.TAB.FIELD.CREATIVEX", "name": "Platform > Rating (%)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Platform > Rating (%)", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_CREATIVEX", "column_name": "CREATIVEX_NEW", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CREATIVEX", "parent_table_name": "Confidence", "cascading_group_id": "FERRERO.CREATIVEX.CHAR", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.CREATIVEX LINK", "name": "CreativeX Hyperlink", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "CreativeX Hyperlink", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_CREATIVEX", "column_name": "CREATIVE_LINK", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.IP_RIGHTS", "name": "IP Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200046, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.IPRIGHT", "name": "IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "IP Rights", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.IPRIGHTS", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IP_RIGHTS", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.BUYOUT", "name": "Touchpoint Scope", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Touchpoint Scope", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.TOTAL_BUYOUT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TOTAL_BUYOUT", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.FERRERO PROPERTY", "name": "Ferrero Property", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Ferrero Property", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.FERRERO_PROPERTY", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FERRERO_PROPERTY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200035, "metadata_element_list": [{"id": "FERRERO.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1209, "metadata_element_list": [{"id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "name": "IP Coverage, Area, Region & Market Unit", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Coverage, Area, Region & Market Unit", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "IPCOVERAGE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "cascading_group_id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHT TYPE", "name": "Copyright Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHT_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.MEDIATYPE", "name": "Media Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Media Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MEDIA_TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "MEDIA_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE FROM", "name": "Expiration of Usage - From", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - From", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_FROM", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE TO", "name": "Expiration of Usage - To", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - To", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_TO", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO._DURATION", "name": "IP Duration", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Duration", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "ECOM_DURATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHTTYPE DETAILS", "name": "Copyright Type Details", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type Details", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHTTYPE_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 6, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.MARKET.VID_STAT_RIGHT", "name": "Video & Static Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200047, "metadata_element_list": [{"id": "FERRERO.MARKET.VID_N_STAT", "name": "Video and Static Right", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Video and Static Right", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VID_AND_STAT_RIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.VID_STAT_TYPE", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1221, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.TYPE_VID", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Video & Static Right", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TYPE_VID_STAT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_MARKET_TYPE_VID_STAT", "column_name": "TYPE_OF_VIDEO_STATIC_RIGHT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.VID_STAT_TYPE", "parent_table_name": "Type of Video & Static Right", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKET.PROD_COMPANY", "name": "Production House", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Production House", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.PRODUCT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200050, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.LICENSIN", "name": "Licensing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Licensing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSING", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "cascading_group_id": "FERRERO.MARKET.CG.LICENSE", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.SPOT_DETAILS", "name": "Spot Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200049, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.SPOT_VERSION", "name": "Spot Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Version", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_VERSION", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_VERSION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.SPOT_TYPE", "name": "Spot Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_TYPE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.DIRECTOR_NAME", "name": "Director Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Director Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "DIRECTOR_NAME", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VIDEO_POST_PROD_COMPANY", "name": "Video Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VID_POST_PROD_CONTACT", "name": "Video Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_COMPANY", "name": "Audio Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_CONTACT", "name": "Audio Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.BROADCASTER.CODE", "name": "Broadcaster Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Broadcaster Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BROADCASTER_CODE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.TECHNICAL_VALIDATION", "name": "Technical Validation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Technical Validation", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TECHNICAL_VALIDATION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS", "name": "Media Analysis", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1002, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "name": "Categories", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 105, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY NAME", "name": "Category Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "building_doorwindows"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Category Name", "values": [{"value": {"type": "string", "value": "building_doorwindows"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "others_"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "outdoor_"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "NAME", "data_length": 100, "description": "Category Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY CONFIDENCE", "name": "Category Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 11.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Category Confidence", "values": [{"value": {"type": "decimal", "value": 11.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 4.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 0.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "CONFIDENCE", "data_length": 10, "description": "Category Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES COUNT", "name": "Faces Count", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Faces Count", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACECOUNT", "column_name": "COUNT", "data_length": 10, "description": "Faces Count", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "name": "Face Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 106, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME", "name": "Recognized Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME", "data_length": 2000, "description": "Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME CONFIDENCE", "name": "Recognized Name Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME_CONFIDENCE", "data_length": 10, "description": "Name Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE", "name": "Person Age", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE", "data_length": 10, "description": "Person Age", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE CONFIDENCE", "name": "Person Age Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Person Age Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_CONFIDENCE", "data_length": 10, "description": "Person Age Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER", "name": "Gender", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Gender", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.GENDER", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER", "data_length": 40, "description": "Gender", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER CONFIDENCE", "name": "Gender Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Gender Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER_CONFIDENCE", "data_length": 10, "description": "Gender Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.FACE COORDS", "name": "Face Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "FACE_COORDS", "data_length": 200, "description": "Face Coordinates like postion, height,width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE GROUP", "name": "Person Age Group", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age Group", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.AGE GROUP", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_GROUP", "data_length": 10, "description": "Person Age Group", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "name": "Safe Content", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 107, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONTENT TYPE", "name": "Safe Content Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Safe Content Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENTS", "data_length": 20, "description": "Safe Content Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONFIDENCE", "name": "Content Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Content Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENT_CONFIDENCE", "data_length": 10, "description": "Safe Content Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "name": "Colors", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 108, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.NAME", "name": "Color", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "White"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Color", "values": [{"value": {"type": "string", "value": "White"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "Black"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "NAME", "data_length": 25, "description": "COLOR", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.PROPORTION", "name": "Color Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Color Confidence", "values": [{"is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "PROPORTION", "data_length": 10, "description": "Proportion", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.FOREGROUND", "name": "Foreground Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Black"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Foreground Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "FOREGROUND", "data_length": 25, "description": "Foreground Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.BACKGROUND", "name": "Background Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "White"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Background Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "BACKGROUND", "data_length": 25, "description": "Background Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.ISBW", "name": "Is Black and White", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "true"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Is Black and White", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "ISBW", "data_length": 10, "description": "Is Black and White", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "name": "Captions", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 109, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION TEXT", "name": "Caption Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "icon"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Caption Text", "values": [{"value": {"type": "string", "value": "icon"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "TEXT", "data_length": 2000, "description": "Caption Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION CONFIDENCE", "name": "Caption Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 38.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Caption Confidence", "values": [{"value": {"type": "decimal", "value": 38.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "CAPTION_CONFIDENCE", "data_length": 10, "description": "Caption Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "name": "Image Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 110, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.IMAGE TYPE", "name": "Analysis Image Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "clip_art"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Analysis Image Type", "values": [{"value": {"type": "string", "value": "clip_art"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_IMAGE_TYPE", "column_name": "TYPE", "data_length": 100, "description": "Image Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "parent_table_name": "Image Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.DATE", "name": "Date: Media Analysis", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-11-12T16:12:27+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date: Media Analysis", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MEDIA_ANALYSIS_DATE", "data_length": 25, "description": "Date Media Analysis was done on the asset.", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR LANGUAGE", "name": "Image Text Language", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "unk"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Image Text Language", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "LANGUAGE", "data_length": 10, "description": "OCR data language", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR TEXT", "name": "Text on Image", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Text on Image", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "TEXT", "data_length": 4000, "description": "OCR Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "name": "Embedded Brand Info", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 119, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.NAME", "name": "Embedded Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Embedded Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Embedded Brand Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.CONFIDENCE", "name": "Embedded Brand Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Embedded Brand Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Embedded Brand Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.COORDINATES", "name": "Embedded Brand Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Embedded Brand Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "COORDINATES", "data_length": 200, "description": "Embedded Brand Coordinates like position, height, width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "HYBRIS.PRODUCT.INFO", "name": "PIM Item Reference", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200027, "metadata_element_list": [{"id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "name": "Hybris Item Reference", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1206, "metadata_element_list": [{"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ID", "name": "Hybris Item ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ID", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT TAG NAME", "name": "Hybris Assignment Label", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Assignment Label", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_TAG_NAME", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ATTRIBUTE NAME", "name": "Hybris Attribute Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Attribute Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ATTRIBUTE_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT CATALOG NAME", "name": "Hybris Catalog Mnemonic", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Catalog Mnemonic", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_CATALOG_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT PK", "name": "Hybris Item PK", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item PK", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_PK", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.SYSTEM ID", "name": "Hybris System ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris System ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "SYSTEM_ID", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.ASSIGNED", "name": "Assigned", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Assigned", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "ASSIGNED", "column_name": "ASSIGNED", "data_length": 38, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PIM TYPE", "name": "PIM Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "PIM Type", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_PIM_TYPE", "column_name": "PIM_TYPE", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS VIDEO", "name": "Media Analysis Video", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1003, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "name": "Labels", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 113, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.ID", "name": "Label Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "ID", "data_length": 40, "description": "Label Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.NAME", "name": "Label Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "NAME", "data_length": 40, "description": "Label Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.APPEARANCES", "name": "Label Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "APPEARANCES", "data_length": 0, "description": "Label Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "name": "Sentiments", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 114, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.ID", "name": "Sentiment Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "ID", "data_length": 40, "description": "Sentiment Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.NAME", "name": "Sentiment Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "NAME", "data_length": 40, "description": "Sentiment Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.APPEARANCES", "name": "Sentiment Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "APPEARANCES", "data_length": 0, "description": "Sentiment Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.SEEN.DURATION.RATIO", "name": "Sentiment Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Sentiment Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "name": "Keywords", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 115, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.ID", "name": "Keyword Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "ID", "data_length": 40, "description": "Keyword Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.NAME", "name": "Keyword Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "NAME", "data_length": 40, "description": "Keyword Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.APPEARANCES", "name": "Keyword Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Keyword Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "name": "Faces", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 111, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.ID", "name": "Face Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "ID", "data_length": 40, "description": "Face Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.NAME", "name": "Face Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "NAME", "data_length": 40, "description": "Face Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.TITLE", "name": "Face Title", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Title", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "TITLE", "data_length": 249, "description": "Face Title", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.DESCRIPTION", "name": "Face Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Face Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.APPEARANCES", "name": "Face Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "APPEARANCES", "data_length": 0, "description": "Face Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SPEAKER.FACE.ID", "name": "Video Speaker Object Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Speaker Object Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "THUMBNAIL_OBJECT_ID", "data_length": 40, "description": "Video Speaker Object Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.SEEN.DURATION.RATIO", "name": "Face Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "SEEN_DURATION_RATIO", "data_length": 20, "description": "Face Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "name": "Brands", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 112, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.ID", "name": "Video Brand Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "ID", "data_length": 40, "description": "Brand Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.NAME", "name": "Video Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Brand Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.DESCRIPTION", "name": "Video Brand Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Brand Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.WIKIURL", "name": "Video Brand Wiki URL", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Wiki URL", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "WIKIURL", "data_length": 200, "description": "Brand Wiki URL", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.APPEARANCES", "name": "Video Brand Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Brand Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.SEEN.DURATION.RATIO", "name": "Video Brand Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Brand Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "name": "Speeches", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 116, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.ID", "name": "SpeechText Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "SpeechText Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "ID", "data_length": 40, "description": "SpeechText Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXT", "name": "Speech Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Text", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXT", "data_length": 1000, "description": "Speech Text", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXTTYPE", "name": "Speech Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXTTYPE", "data_length": 40, "description": "Speech Type", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.START TIME", "name": "Speech Start Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Start Time", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "START_TIME", "data_length": 40, "description": "Speech Start Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.END TIME", "name": "Speech End Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech End Time", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "END_TIME", "data_length": 40, "description": "Speech End Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "name": "Speakers", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 122, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.ID", "name": "Speaker Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "ID", "data_length": 40, "description": "Speaker Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.NAME", "name": "Speaker Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "NAME", "data_length": 100, "description": "Speaker Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.APPEARANCES", "name": "Speaker Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "APPEARANCES", "data_length": 0, "description": "Speaker Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.FIELDGROUP.LOCALASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200057, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1239, "metadata_element_list": [{"id": "FERRERO.FIELD.COUNTRY", "name": "LOCAL COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "LOCAL COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USER", "name": "USER", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "USER", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_USER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.ASSOCIATION", "name": "TYPE OF ASSOCIATION", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "TYPE OF ASSOCIATION", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_ASSOCIATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.VALUE", "name": "VALUE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "VALUE", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_VALUE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}], "has_multilingual_fields": false}, "mime_type": "image/png", "path_list": [{"parents": [{"id": "22ffc2d88af095463e48ab79e09886102f039563", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "22ffc2d88af095463e48ab79e09886102f039563", "sequence_number": 0}, {"id": "c6e6896565298d09d364f501aecd10d0998d8437", "name": "NUTELLA XMAS - PL ADAPTATION 2", "container_state": "NORMAL", "original_uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "sequence_number": 0}, {"id": "20c88462ba3557e7aae759665cbe331f693d398a", "name": "02. Campaigns", "container_state": "NORMAL", "original_uoi_id": "20c88462ba3557e7aae759665cbe331f693d398a", "sequence_number": 0}, {"id": "1638869b9b347c39842effc7e5ff965de47e8e65", "name": "01.Standard", "container_state": "NORMAL", "original_uoi_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "sequence_number": 0}, {"id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "name": "01.Poland", "container_state": "NORMAL", "original_uoi_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "sequence_number": 0}, {"id": "341bbf240ea033435cc225cd1add5c009bc067d7", "name": "PL", "container_state": "NORMAL", "original_uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "sequence_number": 0}, {"id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "name": "01. PL - Nutella", "container_state": "NORMAL", "original_uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "sequence_number": 0}, {"id": "5353bb35177d792b073acc634e010df2908fde32", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 1, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "sequence_number": 0}, {"id": "847c0ede25c32edd97546221fe54fb392431848d", "name": "NUTELLA XMAS - PL ADAPTATION 3", "container_state": "NORMAL", "original_uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "sequence_number": 0}, {"id": "20c88462ba3557e7aae759665cbe331f693d398a", "name": "02. Campaigns", "container_state": "NORMAL", "original_uoi_id": "20c88462ba3557e7aae759665cbe331f693d398a", "sequence_number": 0}, {"id": "1638869b9b347c39842effc7e5ff965de47e8e65", "name": "01.Standard", "container_state": "NORMAL", "original_uoi_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "sequence_number": 0}, {"id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "name": "01.Poland", "container_state": "NORMAL", "original_uoi_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "sequence_number": 0}, {"id": "341bbf240ea033435cc225cd1add5c009bc067d7", "name": "PL", "container_state": "NORMAL", "original_uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "sequence_number": 0}, {"id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "name": "01. PL - Nutella", "container_state": "NORMAL", "original_uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "sequence_number": 0}, {"id": "5353bb35177d792b073acc634e010df2908fde32", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 1, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "103a6545e38f07f6e989a86c6ee7e10339a71a14", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "103a6545e38f07f6e989a86c6ee7e10339a71a14", "sequence_number": 0}, {"id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "name": "NUTELLA - CHRISTMAS 26 E2E", "container_state": "NORMAL", "original_uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "sequence_number": 0}, {"id": "413c776f4416163b88737d53bb72dfe23bfd2430", "name": "Global", "container_state": "NORMAL", "original_uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 8, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "sequence_number": 0}, {"id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "name": "Oliver Read Only", "container_state": "NORMAL", "original_uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "sequence_number": 0}, {"id": "23b155c32d5c6142914b41458234c100812bbec8", "name": "Oliver", "container_state": "NORMAL", "original_uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "sequence_number": 0}, {"id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "name": "Z - Exchange", "container_state": "NORMAL", "original_uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "sequence_number": 0}], "complete": true, "sequence_number": 1, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "22ffc2d88af095463e48ab79e09886102f039563", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "22ffc2d88af095463e48ab79e09886102f039563", "sequence_number": 0}, {"id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "name": "Oliver Read Only", "container_state": "NORMAL", "original_uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "sequence_number": 0}, {"id": "23b155c32d5c6142914b41458234c100812bbec8", "name": "Oliver", "container_state": "NORMAL", "original_uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "sequence_number": 0}, {"id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "name": "Z - Exchange", "container_state": "NORMAL", "original_uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "sequence_number": 0}], "complete": true, "sequence_number": 1, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}], "creator_id": "1003", "asset_state": "NORMAL", "checked_out": false, "folder_path": "", "content_size": 29041, "content_type": "BITMAP", "content_state": "NORMAL", "date_imported": "2025-11-12T16:11:38.94+01:00", "import_job_id": 216974, "subscribed_to": false, "collection_ids": [], "latest_version": true, "legacy_model_id": 116, "content_editable": true, "import_user_name": "bizAdmin", "date_last_updated": "2025-11-12T16:14:23.157+01:00", "metadata_model_id": "ECOMMERCE", "original_asset_id": "b6cb6550aa23d9d98b78459df26ca2d6a563b842", "rendition_content": {"preview_content": {"id": "bf642002e7a9600311ba212e5b95fcf67ad8050d", "url": "/otmmapi/v6/renditions/bf642002e7a9600311ba212e5b95fcf67ad8050d", "name": "N_nutella_outline-S.png", "width": 788, "height": 768, "mime_type": "image/png", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "PREVIEW", "content_path": "data\\\\repository\\\\screen\\\\vol0\\\\184\\\\N_nutella_outline-S_bf642002e7a9600311ba212e5b95fcf67ad8050d.png", "content_size": 3131, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "thumbnail_content": {"id": "69ef55e5d8b3c9e632d439e017b4342324c53e3f", "url": "/otmmapi/v6/renditions/69ef55e5d8b3c9e632d439e017b4342324c53e3f", "name": "N_nutella_outline-T.png", "width": 788, "height": 768, "mime_type": "image/png", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "THUMBNAIL", "content_path": "data\\\\repository\\\\thumb\\\\vol0\\\\198\\\\N_nutella_outline-T_69ef55e5d8b3c9e632d439e017b4342324c53e3f.png", "content_size": 3131, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_content_info": {"master_content": {"id": "82c22ae321e9c870bad74f81b19dc65ca50d210e", "url": "/otmmapi/v6/renditions/82c22ae321e9c870bad74f81b19dc65ca50d210e", "name": "N_nutella_outline.png", "width": 1875, "height": 1828, "mime_type": "image/png", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\224\\\\N_nutella_outline_82c22ae321e9c870bad74f81b19dc65ca50d210e.png", "content_size": 29041, "unit_of_size": "BYTES", "content_checksum": "926c2cbf619a01cc120b4d386d1906cb", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_state_user_id": "1003", "master_content_info": {"id": "82c22ae321e9c870bad74f81b19dc65ca50d210e", "url": "/otmmapi/v6/renditions/82c22ae321e9c870bad74f81b19dc65ca50d210e", "name": "N_nutella_outline.png", "width": 1875, "height": 1828, "mime_type": "image/png", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\224\\\\N_nutella_outline_82c22ae321e9c870bad74f81b19dc65ca50d210e.png", "content_size": 29041, "unit_of_size": "BYTES", "content_checksum": "926c2cbf619a01cc120b4d386d1906cb", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "delivery_service_url": "https://ppr.dam.ferrero.com/adaptivemedia/rendition?id=b6cb6550aa23d9d98b78459df26ca2d6a563b842", "product_associations": false, "security_policy_list": [{"id": 5467, "name": "Marketing Viewer", "status": "NORMAL", "created_by": "1003", "create_date": "2023-10-06T16:52:07.297+02:00", "description": "Marketing Viewer", "ownership_type": "PUBLIC"}], "thumbnail_content_id": "69ef55e5d8b3c9e632d439e017b4342324c53e3f", "content_state_user_id": "1003", "content_state_user_name": "OTMM BusinessAdmin", "asset_lock_state_user_id": "1003", "metadata_state_user_name": "OTMM BusinessAdmin", "access_control_descriptor": {"permissions_map": {"entry": [{"key": "text.securityPolicy.permission.Custom04Permission", "value": true}, {"key": "text.securityPolicy.permission.ContentEditPermission", "value": true}, {"key": "text.securityPolicy.permission.AssetViewPermission", "value": true}, {"key": "text.securityPolicy.permission.ProjectViewPermission", "value": true}, {"key": "text.securityPolicy.permission.MembershipEditPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom03Permission", "value": true}, {"key": "text.securityPolicy.permission.MetaDataEditPermission", "value": true}, {"key": "text.securityPolicy.permission.EditParentsPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom02Permission", "value": true}, {"key": "text.securityPolicy.permission.ExportPermission", "value": true}, {"key": "text.securityPolicy.permission.SummaryViewPermission", "value": true}, {"key": "text.securityPolicy.permission.PreviewViewPermission", "value": true}, {"key": "text.securityPolicy.permission.SubscribePermission", "value": true}, {"key": "text.securityPolicy.permission.DeleteAssetPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom01Permission", "value": true}]}}, "content_lock_state_user_id": "1003", "asset_state_last_update_date": "2025-11-12T16:14:23.157+01:00", "content_lock_state_user_name": "bizAdmin", "metadata_lock_state_user_name": "bizAdmin", "content_state_last_update_date": "2025-11-12T16:11:39.187+01:00", "inherited_metadata_collections": [{"container_id": "22ffc2d88af095463e48ab79e09886102f039563", "container_name": "00. Master Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "22ffc2d88af095463e48ab79e09886102f039563", "originator_id": "22ffc2d88af095463e48ab79e09886102f039563", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00. Master Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "c6e6896565298d09d364f501aecd10d0998d8437", "container_name": "NUTELLA XMAS - PL ADAPTATION 2", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA XMAS - PL ADAPTATION 2"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000598"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA_XMAS_-_PL__JV_LA_MLT_NUT_0000598"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CHRISTMAS"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local adaptation of global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000576"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "EE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "EE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "LT"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "LV"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2024/2025"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "A5"}, "display_value": "Rework needed from Agency", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.DEPARTMENTNAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "20c88462ba3557e7aae759665cbe331f693d398a", "container_name": "02. Campaigns", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "20c88462ba3557e7aae759665cbe331f693d398a", "originator_id": "20c88462ba3557e7aae759665cbe331f693d398a", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "02. Campaigns"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "container_name": "01.Standard", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "originator_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "01.Standard"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "container_name": "01.Poland", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "originator_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "01.Poland"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "container_name": "PL", "container_type_id": "GLOBALMARKETUNIT", "container_type_name": "L6 - MARKET UNIT", "inherited_metadata_values": [{"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "b94dd71b732e3c1df6ae63216c53d4d4b0e7f002"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E39"}, "display_value": "POLAND", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "13063087b81ea172db42e69ed8e8fa013cd5bfe0"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Local PL Editable Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "bf49ba2a40d0d0dccee4d5de7381659b106dd89a"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Nutella Local PL Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "3c0070e420882e3e18f6097811cb60a67239003b"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "7f3c1933b61e900457ea6e2aab750303882873d4"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "b0c960759e48c0fcdcb650417179a614da95e866"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Local PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "6f603fcc63415e266dc35cf2314d31357a2966bf"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "495fa4f08769a021cfa907dfb7a903fade9bd19a"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "e3b647e172a89e1e7cbdd2964faff1bca8dcf520"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "6870cca056b54cd400a9fbd4fe75513e69cedcdd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "container_name": "01. PL - Nutella", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "5efe2981e6f9afca7ed3fc91a171f02162ef23e3"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E008"}, "display_value": "POLAND", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Local PL Editable Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0de507c8b9d1f5942b6376b6c2a2b3ec1097e42e"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E39"}, "display_value": "POLAND", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "ca70a6d55e4277ecbef2a01a593c614501cbcf74"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "3e9d669ab1047383d0416ba40af75744148c94c8"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0e241fc386dcd91baa31a409e297169fe4a352c2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "2e3e0f2be0e487b540d9b63cb8c0e9ed9c6b1bb6"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "359c98154f230a60acc6b4eb048e129411d7a778"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "e92f9f10c0c29dda8261218c2c72a0baa66472f2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "15dff42c3b196ba3ae5b3c2ea33f00e347e6f654"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0ae044cd9dddf86cd9406c9edc3996b18c430be0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "name": "AMMC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AMMC", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LOCAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "7806fed6127b50c21f6b03e1f7b63f3dedc1e8d1"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "4c8a2d6e178638bfacfeaf3f7f6f1000304693a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "name": "Product Asset Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Asset Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCT_ASSET_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "5353bb35177d792b073acc634e010df2908fde32", "container_name": "EU", "container_type_id": "GEOGRAPHYLOCAL", "container_type_name": "L4 - GEOGRAPHY LOCAL", "inherited_metadata_values": [{"id": "FERRERO.MARKET.FOLDER.GLOBAL", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "4c4d4bf36bf8b1ace55f990e78d6332a9cb20990"}, "metadata_element": {"id": "FERRERO.MARKET.FOLDER.GLOBAL", "name": "Global/Local (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "LOCAL"}, "display_value": "Local", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local (Marketing)", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "GLOBALLOCAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_AREA", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "3dc200c993ab8263952dc6da1498026f615f45dd"}, "metadata_element": {"id": "MARKETING_AREA", "name": "AREA", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E010"}, "display_value": "EUROPE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "AREA", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "AREA", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "AREA", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "dc7749c3e113ec9e0b9e9a3840ea55673ca5e49f"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "f2d658a3829c2ea158ae70a4b4e7928bcf88f8e2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "972d0258a82de85672bd84d8af68cdb67ad3d3ca"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "1212505ad3fe4c9d7458568f3d95aeb4c4e5c37e"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "9d1dfdef55ff7a3eb03552988ddf729c7a0f5107"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "54f006eeb366121a29ee98da33d437615dcd34e0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "1fd8802010e30d44cebb2f3eb090b12ac550f97d"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "be0dc9a87262ee7fd165237b531ba3b7aa93a260"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "2f99f0f0f9e43fb34df9222c8b73a86fb78e473e"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "container_name": "Nutella", "container_type_id": "GLOBALBRAND", "container_type_name": "L3 - BRAND", "inherited_metadata_values": [{"id": "FERRERO.TABULAR.NEW.BRAND", "tabular": true, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "9bb1c183135f5240f09132aef59c4ea48c762381"}, "metadata_element": {"id": "FERRERO.TABULAR.NEW.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF30"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND (Marketing)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF30"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "BRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TABULAR_BRAND", "column_name": "BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.NEW.BRAND", "parent_table_name": "BRAND (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "tabular": true, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "a37b13c02cba799378211e17b73234a0d836f9b6"}, "metadata_element": {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "JV"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND(HARMONIZED)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "JV"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.HARMONIZEDBRAND", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_HARMONIZEDBRAND", "column_name": "HARMONIZEDBRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.HARMONIZEDBRAND", "parent_table_name": "BRAND(HARMONIZED)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "AGENCY.COLLABORATION", "tabular": false, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "183d6e0957a9940f9b18ef44f46d957802b63397"}, "metadata_element": {"id": "AGENCY.COLLABORATION", "name": "Agency collaboration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency collaboration", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "AGENCY_COLLABORATION", "column_name": "AGENCY_COLLABORATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "AGENCY.SHARING", "tabular": false, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "d0e2b725ddfdc452cc3ba750bbe8ec059c6b01ba"}, "metadata_element": {"id": "AGENCY.SHARING", "name": "Agency sharing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency sharing", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "AGENCY_SHARING", "column_name": "AGENCY_SHARING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "CONTENT.SCALING.AGENCYNAME", "tabular": false, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "f9dfa695cc5ef8cd3fafada4e44cfdaa1522d58a"}, "metadata_element": {"id": "CONTENT.SCALING.AGENCYNAME", "name": "Content Scaling agency name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Scaling agency name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENTSCALING_AGENCYNAME", "column_name": "CONTENTSCALING_AGENCYNAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "container_name": "01. Nutella Core", "container_type_id": "GLOBALSUBCATEGORY", "container_type_name": "L2 - SUBCATEGORY", "inherited_metadata_values": [{"id": "MARKETING_SUBCATEGORY", "tabular": false, "value_id": {"uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "originator_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "inherited_field_id": "3000ad591e09b5c75f85fc2ccbb9ebeb31b3ab78"}, "metadata_element": {"id": "MARKETING_SUBCATEGORY", "name": "SUBCATEGORY", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Mart-Nutella-Core"}, "display_value": "Nutella Core", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "SUBCATEGORY", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "SUBCATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "SUBCATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "tabular": true, "value_id": {"uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "originator_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "inherited_field_id": "2c751ce760d88c0e271925ea5149348106944bfa"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Subcategory Owner", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_SUBCATEGORY_OWNER_TM", "column_name": "SUBCATEGORY_OWNER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "parent_table_name": "Subcategory Owner", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "container_name": "Nutella", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "originator_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E04"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "originator_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final Approver BPS ", "values": [{"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "container_name": "00. Master Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "originator_id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00. Master Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "847c0ede25c32edd97546221fe54fb392431848d", "container_name": "NUTELLA XMAS - PL ADAPTATION 3", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA XMAS - PL ADAPTATION 3"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000599"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA_XMAS_-_PL_A_JV_LA_PL_NUT_0000599"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CHRISTMAS"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local adaptation of global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000576"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2021/2022"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "A1"}, "display_value": "Local Campaign ready for localization", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.DEPARTMENTNAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "103a6545e38f07f6e989a86c6ee7e10339a71a14", "container_name": "05. Final Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "103a6545e38f07f6e989a86c6ee7e10339a71a14", "originator_id": "103a6545e38f07f6e989a86c6ee7e10339a71a14", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "05. Final Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "container_name": "NUTELLA - CHRISTMAS 26 E2E", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA - CHRISTMAS 26 E2E"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000576"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA_-_CHRISTMA_JV_GL_MLT_NUT_0000576"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "BE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "BE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "BG"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "EE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "LT"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "LU"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "LV"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "MD"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "NL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "RO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2025/2026"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "B2"}, "display_value": "Master campaign received from Agency", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.DEPARTMENTNAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "container_name": "Global", "container_type_id": "GEOGRAPHYGLOBAL", "container_type_name": "L4 - GEOGRAPHY GLOBAL", "inherited_metadata_values": [{"id": "FERRERO.MARKET.FOLDER.GLOBAL", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "963db123044a8d3ff5d8f4aac56d35df77a7656c"}, "metadata_element": {"id": "FERRERO.MARKET.FOLDER.GLOBAL", "name": "Global/Local (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "GLOBAL"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local (Marketing)", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "GLOBALLOCAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_AREA", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "3a37ace6a53a93799e0e18773ba6c7e70305cc78"}, "metadata_element": {"id": "MARKETING_AREA", "name": "AREA", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AREA", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "AREA", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "AREA", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "9f64f884b41d2a8445f4d9cd60714e91024e8b13"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Global Editable Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "8847a6dfbebcf323a8170649b390af1a375c08b8"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Nutella Global Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "758e614412f11ecb58446966d328974daf253446"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "53df9e81ae46cf6bd2440643426224b1fb904aeb"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "name": "Published Security Policy - Restricted Visibility", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Global Published Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Security Policy - Restricted Visibility", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_VISIBILITY_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "6b410cc3e966037a3e534da53137d32856cd6bdb"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "b5f185da6208925fe296e074dbdfdd74678ad076"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "b9e4bba5fa277862093047710c3fccb44a553f91"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "a70b94dccf12d05fbcf6a1881e4726759d8714a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "134e6810dec03aed0a70f68bf16cdd3a390f99de"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "2c412cc87805c4f03622e671cd7cdd65402b5598"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "0f4d4a35b08b4d2aac7ce7cc18999a8e5f523edf"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.GLOBAL APPROVER", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "43af18c983afd26a477317ac0b608495d9e0b3df"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.GLOBAL APPROVER", "name": "Global approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "GLOBAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "00dacbe20687d3c5d0be9b4fc2997c572e3c36bf"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "0fbcf70c95f5d28645e7a6187f7c429d62e60380"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Global comm"}, "display_value": "Global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Global comm"}, "display_value": "Global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "container_name": "Oliver Read Only", "container_type_id": "L3 - Agency Structure", "container_type_name": "L3 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "55530f721f18c847e35d7c828edf53461b5014b0"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "330bb6f68316aab5c45f9fe34e047cce573c67cc"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "name": "Agency Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "AGENCY_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "e30e90d694f9935d4c15c4c78891beed8853a272"}, "metadata_element": {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "name": "Published Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "PUBLISHED_ASSET_SP_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "23b155c32d5c6142914b41458234c100812bbec8", "container_name": "Oliver", "container_type_id": "L2 - Agency Structure", "container_type_name": "L2 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.AGENCY", "tabular": false, "value_id": {"uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "originator_id": "23b155c32d5c6142914b41458234c100812bbec8", "inherited_field_id": "48fcbc397986aca5bb8722a95197dd0a46f19b4e"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_AGENCY", "column_name": "AGENCY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "container_name": "Z - Exchange", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "YY"}, "display_value": "AGENCIES", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Final Approver BPS ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}], "asset_lock_state_last_update_date": "2025-11-12T16:14:23.157+01:00", "content_lock_state_last_update_date": "2025-11-12T16:11:39.25+01:00"}, "language_code": null, "language_name": null, "subject_title": null, "file_extension": ".png", "asset_type_name": null, "file_size_bytes": null, "duration_seconds": null, "upload_directory": "95c935af7e32719e82ee47bcae9cf772c01b51fa", "local_campaign_id": "C000000599", "original_filename": "N_nutella_outline", "global_master_folder_id": "847c0ede25c32edd97546221fe54fb392431848d", "global_master_campaign_id": "C000000576"} 2025-11-21 03:23:24.404226 \N 7 mX4TA4 master_asset_created {"id": 7, "tags": null, "status": "active", "width_px": null, "height_px": null, "mime_type": "image/svg-xml", "asset_type": null, "brand_code": null, "brand_name": null, "categories": null, "created_at": "2025-11-21T03:23:27.714219", "deleted_at": null, "is_deleted": false, "updated_at": "2025-11-21T03:23:27.714219", "description": "Box File ID: 2052713742504\\nBox URL: https://app.box.com/file/2052713742504\\nDAM Asset ID: 889a0587b57b18f5e5bd192376b35a69c3abfd85", "ingested_at": "2025-11-21T03:23:27.714219", "ingested_by": null, "opentext_id": "889a0587b57b18f5e5bd192376b35a69c3abfd85", "tracking_id": "mX4TA4", "aspect_ratio": null, "country_code": null, "country_name": null, "full_metadata": {"name": "NUTELLA2024-047xmas25pos.svg", "links": {"links": [], "source_id": "889a0587b57b18f5e5bd192376b35a69c3abfd85"}, "locked": false, "deleted": false, "expired": false, "version": 1, "asset_id": "889a0587b57b18f5e5bd192376b35a69c3abfd85", "metadata": {"id": "ECOMMERCE", "name": "Marketing Asset", "type": "com.artesia.metadata.MetadataModel", "legacy_id": 116, "metadata_element_list": [{"id": "FERRERO.CATEGORY.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200054, "metadata_element_list": [{"id": "FERRERO.FIELD.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Status", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.CONTENT_STATUS", "edit_type": "COMBO_NOTNULL", "facetable": false, "searchable": true, "table_name": "FERRERO_CONTENT_STATUS_MD", "column_name": "CONTENT_STATUS", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9215, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRER.CATEGORY.ASSET_INFO", "name": "Asset Info", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200022, "metadata_element_list": [{"id": "FERRERO.FIELD.MKTG.ASSET TYPE", "name": "Asset Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "qrcode"}, "display_value": "QR code", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.ASSETTYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.FISCAL YEAR", "name": "Release Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2025/2026"}, "display_value": "2025/2026", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Release Fiscal Year", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_DOMAIN_FISCAL_YEAR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "FISCAL__YEAR", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "name": "Main Languages", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1210, "metadata_element_list": [{"id": "MAIN_LANGUAGES", "name": "MAIN LANGUAGES", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "MAIN LANGUAGES", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MAIN LAGUAGES_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MAIN_LANGUAGE_TABLE", "column_name": "MAIN_LANGUAGE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "parent_table_name": "Main Languages", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.ASSET DESCRIPTION", "name": "Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Description", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "DESCR", "data_length": 249, "description": "Descriptive information", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.FLAVOUR", "name": "Flavour", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Flavour", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.FLAVOUR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FLAVOUR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.SIZE", "name": "Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Size", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.SIZE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SIZE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1241, "metadata_element_list": [{"id": "FERRERO.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Compliance", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ASSETCOMPLIANCE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_COMPLIANCE", "column_name": "ASSET_COMPLIANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "parent_table_name": "Asset Compliance", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.TAG DETAILS", "name": "Tag Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 118, "metadata_element_list": [{"id": "ARTESIA.FIELD.TAG", "name": "Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "text", "field_value": {"type": "string", "value": "text"}, "display_value": "text", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Tag", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "text", "field_value": {"type": "string", "value": "text"}, "display_value": "text", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "design", "field_value": {"type": "string", "value": "design"}, "display_value": "design", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "illustration", "field_value": {"type": "string", "value": "illustration"}, "display_value": "illustration", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "cartoon", "field_value": {"type": "string", "value": "cartoon"}, "display_value": "cartoon", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "vector graphics", "field_value": {"type": "string", "value": "vector graphics"}, "display_value": "vector graphics", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.TAGS", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "OTMM_TAGS", "column_name": "TAG", "data_length": 80, "description": "Tag", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG CONFIDENCE", "name": "Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 98.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Confidence", "values": [{"value": {"type": "decimal", "value": 98.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 86.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 75.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 63.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 15.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Confidence", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG TYPE", "name": "Tag Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Tag Type", "values": [{"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "TAG_TYPE", "data_length": 10, "description": "Tag Type", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED BY", "name": "Associated By", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Associated By", "values": [{"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_BY", "data_length": 10, "description": "Associated By", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED DATE", "name": "Associated Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-11-12T16:12:23.387+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Associated Date", "values": [{"value": {"type": "dateTime", "value": "2025-11-12T16:12:23.387+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-11-12T16:12:23.387+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-11-12T16:12:23.387+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-11-12T16:12:23.387+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-11-12T16:12:23.387+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_DATE", "data_length": 10, "description": "Associated Date", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.STATE", "name": "Global/Local", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "GLOBAL"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO_NOTNULL", "facetable": true, "searchable": true, "table_name": "FERRERO_IC_ASSET_DETAILS", "column_name": "ASSET_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.ASPECT RATIO", "name": "Aspect Ratio (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio (Marketing)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASPECT_RATIO", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASPECT_RATIO", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "name": "Tag (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1222, "metadata_element_list": [{"id": "MARKETING_TAG", "name": "Marketing Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Marketing Tag", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.DOMAIN.TAG", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TAG_MARKET", "column_name": "TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "parent_table_name": "Tag (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.TAGS", "name": "Auto-Generated Tags", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Auto-Generated Tags", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "AUTO_GENERATED_TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CERTIFIER", "name": "Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approver", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.MARKETING.FIELD.APPROVAL DATE", "name": "Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.LEGAL APPROVAL DATE", "name": "Legal Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CERTIFIER", "name": "IA&CC Certifier", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Certifier", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CC APPROVAL DATE", "name": "IA&CC Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "name": "Extended Approval", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1230, "metadata_element_list": [{"id": "FERRERO.FIELD.EXTENDED.APPROVAL", "name": "Extended Approval required by:", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended Approval required by:", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COMMENTS", "name": "Comment", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comment", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "COMMENTS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.DATE", "name": "Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USERS", "name": "User ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "User ID", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "USERS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXTENDED.JOBID", "name": "Extended JobID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended JobID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.MIGRATION.INDEX", "name": "Migration Index", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Migration Index", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MIGRATION.INDEX", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MIGRATION_INDEX", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "FERRERO_MARKET_MARKETING_CREATOR", "name": "Marketing Creator", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Marketing Creator", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.CREATOR", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MARKETING_CREATOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "ARTESIA.FIELD.IS LATEST VERSION", "name": "Is Latest Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Y"}, "display_value": "Yes", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Is Latest Version", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.YES_NO", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "IS_LATEST_VERSION", "data_length": 1, "description": "Is this the latest version? (Y/N)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET VERSION", "name": "Asset Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 1}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Version", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "INTEGER", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "VERSION", "data_length": 12, "description": "Version number of asset", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET_ID", "name": "Asset ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "889a0587b57b18f5e5bd192376b35a69c3abfd85"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset ID", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "LOGICAL_UOI_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.ECOMMERCE STATUS", "name": "Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "PUBLISHED"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Status", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "ASSET_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CREATOR", "name": "Uploaded by", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Uploaded by", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_USER_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.FIELD.CREATION DATE", "name": "Upload Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-11-12T16:11:38.943+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Upload Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_DT", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.ASSET NAME", "name": "Asset Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA2024-047xmas25pos.svg"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Name", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "description": "Original name of master object", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.CONTENT TYPE", "name": "Content Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "BITMAP"}, "display_value": "Image", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Type", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.CONTENT_TYPES", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "CONTENT_TYPE", "data_length": 8, "description": "Content Type", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.MIME TYPE", "name": "File Extension", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "image/svg-xml"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Extension", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_MIME_TYPE", "data_length": 80, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.FILE.SIZE", "name": "File Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "long", "value": 135804}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Size", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "LONG", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_SIZE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP RESOLUTION", "name": "Bitmap Resolution", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 96}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Resolution", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_RESOLUTION", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP WIDTH", "name": "Bitmap Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 1148}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Width", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_WIDTH", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP HEIGHT", "name": "Bitmap Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 1148}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Height", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_HEIGHT", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.VIDEO.BIT_RATE", "name": "Bitrate", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitrate", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "BIT_RATE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.EMBEDDED.FIELD.DURATION", "name": "Duration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Duration", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "DURATION_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.ASPECT RATIO", "name": "Aspect Ratio", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "ASPECT_RATIO", "data_length": 30, "displayable": false, "instructions": "ASPECT_RATIO", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME HEIGHT", "name": "Frame Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Height", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_HEIGHT", "data_length": 12, "displayable": true, "instructions": "FRAME_HEIGHT", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME WIDTH", "name": "Frame Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Width", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_WIDTH", "data_length": 12, "displayable": true, "instructions": "FRAME_WIDTH", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.ASPECT.RATIO.POC", "name": "Aspect Ratio(POC)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "1:1"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio(POC)", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASPECT_RATIO_TABLE", "column_name": "ASPECT_RATIO", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "PRODUCT.DETAILS", "name": "Product Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200029, "metadata_element_list": [{"id": "FERRERO.TABLE.EANCODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1208, "metadata_element_list": [{"id": "EAN_CODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "EAN CODE/ 77 CODE", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "EAN.CODE", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "EAN_CODE", "column_name": "EAN_CODE_DESCRIPTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "COUNTRY", "name": "COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "EAN_CODE", "column_name": "COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKETING.ADVANCE.PRODUCT.LINK", "name": "Asset-to-product relation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset-to-product relation", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_MARKETING_ADVANCE_PRODUCT_LINK", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ADVANCE_PRODUCT_LINK", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 10182, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.SUB BRAND", "name": "Sub-Brands", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Sub-Brands", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.SUBBRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "SUB_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT WEIGHT", "name": "Product Weight", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Weight", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_WEIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.CONSUMER UNIT PACKAGING", "name": "Consumer Unit Packaging", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Consumer Unit Packaging", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PACK", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "CONSUMER_UNIT_PACKAGING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.4 DIGIT CODE", "name": "4 Digit Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "4 Digit Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "DIGITCODE", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERREO.ECOM.RETAILER_SPECIFIC_FIELD", "name": "Retailer Specific", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Retailer Specific", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "RETAILER_SPECIFIC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "cascading_group_id": "FERRERO.RETAILER.SPECIFIC", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY START PERIOD", "name": "Asset validity start period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity start period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_STARTING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY END PERIOD", "name": "Asset validity end period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity end period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_ENDING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.ASSET.NAMING.CONVENTION", "name": "Does asset need GS1 naming convention", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Does asset need GS1 naming convention", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASSETNAMINGCONVENTION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_NAMING_CONVENTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9515, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT VIEW", "name": "Product View", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product View", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT VIEW", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_VIEW", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT ANGLE", "name": "Product Angle", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Angle", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT.ANGLE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_ANGLE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT STATE", "name": "Product State", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product State", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT STATE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PROMOTION ID", "name": "Promo ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Promo ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROMO_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.BUSINESS.ASSET TYPE", "name": "Asset Type (eDAM)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Type (eDAM)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "OTMM.DOMAIN.OTMM_ASSETTYPE_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_BUSINESS_INFO", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7244, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200048, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.AGENCY NAME", "name": "Agency Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Agency Name", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.AGENCY_NAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AGENCY_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7336, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.CREATIX", "name": "CreativeX", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200059, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.CREATIVEX", "name": "Confidence", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1245, "metadata_element_list": [{"id": "FERRERO.TAB.FIELD.CREATIVEX", "name": "Platform > Rating (%)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Platform > Rating (%)", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_CREATIVEX", "column_name": "CREATIVEX_NEW", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CREATIVEX", "parent_table_name": "Confidence", "cascading_group_id": "FERRERO.CREATIVEX.CHAR", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.CREATIVEX LINK", "name": "CreativeX Hyperlink", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "CreativeX Hyperlink", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_CREATIVEX", "column_name": "CREATIVE_LINK", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.IP_RIGHTS", "name": "IP Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200046, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.IPRIGHT", "name": "IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "IP Rights", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.IPRIGHTS", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IP_RIGHTS", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.BUYOUT", "name": "Touchpoint Scope", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Touchpoint Scope", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.TOTAL_BUYOUT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TOTAL_BUYOUT", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.FERRERO PROPERTY", "name": "Ferrero Property", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Ferrero Property", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.FERRERO_PROPERTY", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FERRERO_PROPERTY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200035, "metadata_element_list": [{"id": "FERRERO.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1209, "metadata_element_list": [{"id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "name": "IP Coverage, Area, Region & Market Unit", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Coverage, Area, Region & Market Unit", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "IPCOVERAGE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "cascading_group_id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHT TYPE", "name": "Copyright Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHT_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.MEDIATYPE", "name": "Media Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Media Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MEDIA_TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "MEDIA_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE FROM", "name": "Expiration of Usage - From", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - From", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_FROM", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE TO", "name": "Expiration of Usage - To", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - To", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_TO", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO._DURATION", "name": "IP Duration", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Duration", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "ECOM_DURATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHTTYPE DETAILS", "name": "Copyright Type Details", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type Details", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHTTYPE_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 6, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.MARKET.VID_STAT_RIGHT", "name": "Video & Static Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200047, "metadata_element_list": [{"id": "FERRERO.MARKET.VID_N_STAT", "name": "Video and Static Right", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Video and Static Right", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VID_AND_STAT_RIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.VID_STAT_TYPE", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1221, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.TYPE_VID", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Video & Static Right", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TYPE_VID_STAT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_MARKET_TYPE_VID_STAT", "column_name": "TYPE_OF_VIDEO_STATIC_RIGHT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.VID_STAT_TYPE", "parent_table_name": "Type of Video & Static Right", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKET.PROD_COMPANY", "name": "Production House", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Production House", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.PRODUCT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200050, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.LICENSIN", "name": "Licensing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Licensing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSING", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "cascading_group_id": "FERRERO.MARKET.CG.LICENSE", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.SPOT_DETAILS", "name": "Spot Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200049, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.SPOT_VERSION", "name": "Spot Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Version", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_VERSION", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_VERSION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.SPOT_TYPE", "name": "Spot Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_TYPE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.DIRECTOR_NAME", "name": "Director Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Director Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "DIRECTOR_NAME", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VIDEO_POST_PROD_COMPANY", "name": "Video Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VID_POST_PROD_CONTACT", "name": "Video Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_COMPANY", "name": "Audio Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_CONTACT", "name": "Audio Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.BROADCASTER.CODE", "name": "Broadcaster Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Broadcaster Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BROADCASTER_CODE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.TECHNICAL_VALIDATION", "name": "Technical Validation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Technical Validation", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TECHNICAL_VALIDATION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS", "name": "Media Analysis", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1002, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "name": "Categories", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 105, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY NAME", "name": "Category Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "text_"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Category Name", "values": [{"value": {"type": "string", "value": "text_"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "NAME", "data_length": 100, "description": "Category Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY CONFIDENCE", "name": "Category Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 39.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Category Confidence", "values": [{"value": {"type": "decimal", "value": 39.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "CONFIDENCE", "data_length": 10, "description": "Category Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES COUNT", "name": "Faces Count", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Faces Count", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACECOUNT", "column_name": "COUNT", "data_length": 10, "description": "Faces Count", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "name": "Face Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 106, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME", "name": "Recognized Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME", "data_length": 2000, "description": "Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME CONFIDENCE", "name": "Recognized Name Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME_CONFIDENCE", "data_length": 10, "description": "Name Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE", "name": "Person Age", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE", "data_length": 10, "description": "Person Age", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE CONFIDENCE", "name": "Person Age Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Person Age Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_CONFIDENCE", "data_length": 10, "description": "Person Age Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER", "name": "Gender", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Gender", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.GENDER", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER", "data_length": 40, "description": "Gender", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER CONFIDENCE", "name": "Gender Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Gender Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER_CONFIDENCE", "data_length": 10, "description": "Gender Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.FACE COORDS", "name": "Face Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "FACE_COORDS", "data_length": 200, "description": "Face Coordinates like postion, height,width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE GROUP", "name": "Person Age Group", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age Group", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.AGE GROUP", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_GROUP", "data_length": 10, "description": "Person Age Group", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "name": "Safe Content", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 107, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONTENT TYPE", "name": "Safe Content Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Safe Content Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENTS", "data_length": 20, "description": "Safe Content Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONFIDENCE", "name": "Content Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Content Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENT_CONFIDENCE", "data_length": 10, "description": "Safe Content Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "name": "Colors", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 108, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.NAME", "name": "Color", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "White"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Color", "values": [{"value": {"type": "string", "value": "White"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "Black"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "NAME", "data_length": 25, "description": "COLOR", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.PROPORTION", "name": "Color Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Color Confidence", "values": [{"is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "PROPORTION", "data_length": 10, "description": "Proportion", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.FOREGROUND", "name": "Foreground Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "White"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Foreground Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "FOREGROUND", "data_length": 25, "description": "Foreground Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.BACKGROUND", "name": "Background Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "White"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Background Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "BACKGROUND", "data_length": 25, "description": "Background Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.ISBW", "name": "Is Black and White", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "true"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Is Black and White", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "ISBW", "data_length": 10, "description": "Is Black and White", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "name": "Captions", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 109, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION TEXT", "name": "Caption Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "qr code"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Caption Text", "values": [{"value": {"type": "string", "value": "qr code"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "TEXT", "data_length": 2000, "description": "Caption Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION CONFIDENCE", "name": "Caption Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 99.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Caption Confidence", "values": [{"value": {"type": "decimal", "value": 99.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "CAPTION_CONFIDENCE", "data_length": 10, "description": "Caption Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "name": "Image Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 110, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.IMAGE TYPE", "name": "Analysis Image Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "clip_art"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Analysis Image Type", "values": [{"value": {"type": "string", "value": "clip_art"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_IMAGE_TYPE", "column_name": "TYPE", "data_length": 100, "description": "Image Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "parent_table_name": "Image Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.DATE", "name": "Date: Media Analysis", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-11-12T16:12:23+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date: Media Analysis", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MEDIA_ANALYSIS_DATE", "data_length": 25, "description": "Date Media Analysis was done on the asset.", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR LANGUAGE", "name": "Image Text Language", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "unk"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Image Text Language", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "LANGUAGE", "data_length": 10, "description": "OCR data language", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR TEXT", "name": "Text on Image", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Text on Image", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "TEXT", "data_length": 4000, "description": "OCR Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "name": "Embedded Brand Info", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 119, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.NAME", "name": "Embedded Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Embedded Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Embedded Brand Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.CONFIDENCE", "name": "Embedded Brand Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Embedded Brand Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Embedded Brand Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.COORDINATES", "name": "Embedded Brand Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Embedded Brand Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "COORDINATES", "data_length": 200, "description": "Embedded Brand Coordinates like position, height, width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "HYBRIS.PRODUCT.INFO", "name": "PIM Item Reference", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200027, "metadata_element_list": [{"id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "name": "Hybris Item Reference", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1206, "metadata_element_list": [{"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ID", "name": "Hybris Item ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ID", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT TAG NAME", "name": "Hybris Assignment Label", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Assignment Label", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_TAG_NAME", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ATTRIBUTE NAME", "name": "Hybris Attribute Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Attribute Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ATTRIBUTE_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT CATALOG NAME", "name": "Hybris Catalog Mnemonic", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Catalog Mnemonic", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_CATALOG_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT PK", "name": "Hybris Item PK", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item PK", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_PK", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.SYSTEM ID", "name": "Hybris System ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris System ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "SYSTEM_ID", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.ASSIGNED", "name": "Assigned", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Assigned", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "ASSIGNED", "column_name": "ASSIGNED", "data_length": 38, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PIM TYPE", "name": "PIM Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "PIM Type", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_PIM_TYPE", "column_name": "PIM_TYPE", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS VIDEO", "name": "Media Analysis Video", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1003, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "name": "Labels", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 113, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.ID", "name": "Label Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "ID", "data_length": 40, "description": "Label Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.NAME", "name": "Label Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "NAME", "data_length": 40, "description": "Label Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.APPEARANCES", "name": "Label Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "APPEARANCES", "data_length": 0, "description": "Label Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "name": "Sentiments", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 114, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.ID", "name": "Sentiment Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "ID", "data_length": 40, "description": "Sentiment Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.NAME", "name": "Sentiment Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "NAME", "data_length": 40, "description": "Sentiment Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.APPEARANCES", "name": "Sentiment Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "APPEARANCES", "data_length": 0, "description": "Sentiment Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.SEEN.DURATION.RATIO", "name": "Sentiment Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Sentiment Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "name": "Keywords", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 115, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.ID", "name": "Keyword Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "ID", "data_length": 40, "description": "Keyword Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.NAME", "name": "Keyword Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "NAME", "data_length": 40, "description": "Keyword Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.APPEARANCES", "name": "Keyword Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Keyword Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "name": "Faces", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 111, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.ID", "name": "Face Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "ID", "data_length": 40, "description": "Face Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.NAME", "name": "Face Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "NAME", "data_length": 40, "description": "Face Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.TITLE", "name": "Face Title", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Title", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "TITLE", "data_length": 249, "description": "Face Title", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.DESCRIPTION", "name": "Face Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Face Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.APPEARANCES", "name": "Face Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "APPEARANCES", "data_length": 0, "description": "Face Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SPEAKER.FACE.ID", "name": "Video Speaker Object Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Speaker Object Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "THUMBNAIL_OBJECT_ID", "data_length": 40, "description": "Video Speaker Object Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.SEEN.DURATION.RATIO", "name": "Face Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "SEEN_DURATION_RATIO", "data_length": 20, "description": "Face Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "name": "Brands", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 112, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.ID", "name": "Video Brand Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "ID", "data_length": 40, "description": "Brand Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.NAME", "name": "Video Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Brand Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.DESCRIPTION", "name": "Video Brand Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Brand Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.WIKIURL", "name": "Video Brand Wiki URL", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Wiki URL", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "WIKIURL", "data_length": 200, "description": "Brand Wiki URL", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.APPEARANCES", "name": "Video Brand Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Brand Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.SEEN.DURATION.RATIO", "name": "Video Brand Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Brand Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "name": "Speeches", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 116, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.ID", "name": "SpeechText Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "SpeechText Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "ID", "data_length": 40, "description": "SpeechText Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXT", "name": "Speech Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Text", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXT", "data_length": 1000, "description": "Speech Text", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXTTYPE", "name": "Speech Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXTTYPE", "data_length": 40, "description": "Speech Type", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.START TIME", "name": "Speech Start Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Start Time", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "START_TIME", "data_length": 40, "description": "Speech Start Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.END TIME", "name": "Speech End Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech End Time", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "END_TIME", "data_length": 40, "description": "Speech End Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "name": "Speakers", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 122, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.ID", "name": "Speaker Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "ID", "data_length": 40, "description": "Speaker Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.NAME", "name": "Speaker Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "NAME", "data_length": 100, "description": "Speaker Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.APPEARANCES", "name": "Speaker Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "APPEARANCES", "data_length": 0, "description": "Speaker Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.FIELDGROUP.LOCALASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200057, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1239, "metadata_element_list": [{"id": "FERRERO.FIELD.COUNTRY", "name": "LOCAL COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "LOCAL COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USER", "name": "USER", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "USER", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_USER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.ASSOCIATION", "name": "TYPE OF ASSOCIATION", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "TYPE OF ASSOCIATION", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_ASSOCIATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.VALUE", "name": "VALUE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "VALUE", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_VALUE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}], "has_multilingual_fields": false}, "mime_type": "image/svg-xml", "path_list": [{"parents": [{"id": "22ffc2d88af095463e48ab79e09886102f039563", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "22ffc2d88af095463e48ab79e09886102f039563", "sequence_number": 0}, {"id": "c6e6896565298d09d364f501aecd10d0998d8437", "name": "NUTELLA XMAS - PL ADAPTATION 2", "container_state": "NORMAL", "original_uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "sequence_number": 0}, {"id": "20c88462ba3557e7aae759665cbe331f693d398a", "name": "02. Campaigns", "container_state": "NORMAL", "original_uoi_id": "20c88462ba3557e7aae759665cbe331f693d398a", "sequence_number": 0}, {"id": "1638869b9b347c39842effc7e5ff965de47e8e65", "name": "01.Standard", "container_state": "NORMAL", "original_uoi_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "sequence_number": 0}, {"id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "name": "01.Poland", "container_state": "NORMAL", "original_uoi_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "sequence_number": 0}, {"id": "341bbf240ea033435cc225cd1add5c009bc067d7", "name": "PL", "container_state": "NORMAL", "original_uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "sequence_number": 0}, {"id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "name": "01. PL - Nutella", "container_state": "NORMAL", "original_uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "sequence_number": 0}, {"id": "5353bb35177d792b073acc634e010df2908fde32", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 3, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "sequence_number": 0}, {"id": "847c0ede25c32edd97546221fe54fb392431848d", "name": "NUTELLA XMAS - PL ADAPTATION 3", "container_state": "NORMAL", "original_uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "sequence_number": 0}, {"id": "20c88462ba3557e7aae759665cbe331f693d398a", "name": "02. Campaigns", "container_state": "NORMAL", "original_uoi_id": "20c88462ba3557e7aae759665cbe331f693d398a", "sequence_number": 0}, {"id": "1638869b9b347c39842effc7e5ff965de47e8e65", "name": "01.Standard", "container_state": "NORMAL", "original_uoi_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "sequence_number": 0}, {"id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "name": "01.Poland", "container_state": "NORMAL", "original_uoi_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "sequence_number": 0}, {"id": "341bbf240ea033435cc225cd1add5c009bc067d7", "name": "PL", "container_state": "NORMAL", "original_uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "sequence_number": 0}, {"id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "name": "01. PL - Nutella", "container_state": "NORMAL", "original_uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "sequence_number": 0}, {"id": "5353bb35177d792b073acc634e010df2908fde32", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 2, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "103a6545e38f07f6e989a86c6ee7e10339a71a14", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "103a6545e38f07f6e989a86c6ee7e10339a71a14", "sequence_number": 0}, {"id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "name": "NUTELLA - CHRISTMAS 26 E2E", "container_state": "NORMAL", "original_uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "sequence_number": 0}, {"id": "413c776f4416163b88737d53bb72dfe23bfd2430", "name": "Global", "container_state": "NORMAL", "original_uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 9, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "sequence_number": 0}, {"id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "name": "Oliver Read Only", "container_state": "NORMAL", "original_uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "sequence_number": 0}, {"id": "23b155c32d5c6142914b41458234c100812bbec8", "name": "Oliver", "container_state": "NORMAL", "original_uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "sequence_number": 0}, {"id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "name": "Z - Exchange", "container_state": "NORMAL", "original_uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "sequence_number": 0}], "complete": true, "sequence_number": 2, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "22ffc2d88af095463e48ab79e09886102f039563", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "22ffc2d88af095463e48ab79e09886102f039563", "sequence_number": 0}, {"id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "name": "Oliver Read Only", "container_state": "NORMAL", "original_uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "sequence_number": 0}, {"id": "23b155c32d5c6142914b41458234c100812bbec8", "name": "Oliver", "container_state": "NORMAL", "original_uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "sequence_number": 0}, {"id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "name": "Z - Exchange", "container_state": "NORMAL", "original_uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "sequence_number": 0}], "complete": true, "sequence_number": 3, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}], "creator_id": "1003", "asset_state": "NORMAL", "checked_out": false, "folder_path": "", "content_size": 135804, "content_type": "BITMAP", "content_state": "NORMAL", "date_imported": "2025-11-12T16:11:38.943+01:00", "import_job_id": 216974, "subscribed_to": false, "collection_ids": [], "latest_version": true, "legacy_model_id": 116, "content_editable": true, "import_user_name": "bizAdmin", "date_last_updated": "2025-11-12T16:14:23.157+01:00", "metadata_model_id": "ECOMMERCE", "original_asset_id": "889a0587b57b18f5e5bd192376b35a69c3abfd85", "rendition_content": {"preview_content": {"id": "7c324a7741fbcbb0c5501324725d7d76b3593c4f", "url": "/otmmapi/v6/renditions/7c324a7741fbcbb0c5501324725d7d76b3593c4f", "name": "NUTELLA2024-047xmas25pos-S.png", "width": 768, "height": 768, "mime_type": "image/png", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "PREVIEW", "content_path": "data\\\\repository\\\\screen\\\\vol0\\\\184\\\\NUTELLA2024-047xmas25pos-S_7c324a7741fbcbb0c5501324725d7d76b3593c4f.png", "content_size": 24961, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "thumbnail_content": {"id": "420012dd3b0ba89d6fe919bd95161df5ee1a813c", "url": "/otmmapi/v6/renditions/420012dd3b0ba89d6fe919bd95161df5ee1a813c", "name": "NUTELLA2024-047xmas25pos-T.png", "width": 375, "height": 375, "mime_type": "image/png", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "THUMBNAIL", "content_path": "data\\\\repository\\\\thumb\\\\vol0\\\\198\\\\NUTELLA2024-047xmas25pos-T_420012dd3b0ba89d6fe919bd95161df5ee1a813c.png", "content_size": 9746, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_content_info": {"master_content": {"id": "5c1b73c0f02d16c235813d10724d8dcd498f8ca3", "url": "/otmmapi/v6/renditions/5c1b73c0f02d16c235813d10724d8dcd498f8ca3", "name": "NUTELLA2024-047xmas25pos.svg", "width": -1, "height": -1, "mime_type": "image/svg-xml", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\224\\\\NUTELLA2024-047xmas25pos_5c1b73c0f02d16c235813d10724d8dcd498f8ca3.svg", "content_size": 135804, "unit_of_size": "BYTES", "content_checksum": "55438484d736e2df037df96ff8d1f234", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_state_user_id": "1003", "master_content_info": {"id": "5c1b73c0f02d16c235813d10724d8dcd498f8ca3", "url": "/otmmapi/v6/renditions/5c1b73c0f02d16c235813d10724d8dcd498f8ca3", "name": "NUTELLA2024-047xmas25pos.svg", "width": -1, "height": -1, "mime_type": "image/svg-xml", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\224\\\\NUTELLA2024-047xmas25pos_5c1b73c0f02d16c235813d10724d8dcd498f8ca3.svg", "content_size": 135804, "unit_of_size": "BYTES", "content_checksum": "55438484d736e2df037df96ff8d1f234", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "delivery_service_url": "https://ppr.dam.ferrero.com/adaptivemedia/rendition?id=889a0587b57b18f5e5bd192376b35a69c3abfd85", "product_associations": false, "security_policy_list": [{"id": 5467, "name": "Marketing Viewer", "status": "NORMAL", "created_by": "1003", "create_date": "2023-10-06T16:52:07.297+02:00", "description": "Marketing Viewer", "ownership_type": "PUBLIC"}], "thumbnail_content_id": "420012dd3b0ba89d6fe919bd95161df5ee1a813c", "content_state_user_id": "1003", "content_state_user_name": "OTMM BusinessAdmin", "asset_lock_state_user_id": "1003", "metadata_state_user_name": "OTMM BusinessAdmin", "access_control_descriptor": {"permissions_map": {"entry": [{"key": "text.securityPolicy.permission.Custom04Permission", "value": true}, {"key": "text.securityPolicy.permission.ContentEditPermission", "value": true}, {"key": "text.securityPolicy.permission.AssetViewPermission", "value": true}, {"key": "text.securityPolicy.permission.ProjectViewPermission", "value": true}, {"key": "text.securityPolicy.permission.MembershipEditPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom03Permission", "value": true}, {"key": "text.securityPolicy.permission.MetaDataEditPermission", "value": true}, {"key": "text.securityPolicy.permission.EditParentsPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom02Permission", "value": true}, {"key": "text.securityPolicy.permission.ExportPermission", "value": true}, {"key": "text.securityPolicy.permission.SummaryViewPermission", "value": true}, {"key": "text.securityPolicy.permission.PreviewViewPermission", "value": true}, {"key": "text.securityPolicy.permission.SubscribePermission", "value": true}, {"key": "text.securityPolicy.permission.DeleteAssetPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom01Permission", "value": true}]}}, "content_lock_state_user_id": "1003", "asset_state_last_update_date": "2025-11-12T16:14:23.157+01:00", "content_lock_state_user_name": "bizAdmin", "metadata_lock_state_user_name": "bizAdmin", "content_state_last_update_date": "2025-11-12T16:11:39.217+01:00", "inherited_metadata_collections": [{"container_id": "22ffc2d88af095463e48ab79e09886102f039563", "container_name": "00. Master Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "22ffc2d88af095463e48ab79e09886102f039563", "originator_id": "22ffc2d88af095463e48ab79e09886102f039563", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00. Master Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "c6e6896565298d09d364f501aecd10d0998d8437", "container_name": "NUTELLA XMAS - PL ADAPTATION 2", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA XMAS - PL ADAPTATION 2"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000598"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA_XMAS_-_PL__JV_LA_MLT_NUT_0000598"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CHRISTMAS"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local adaptation of global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000576"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "EE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "EE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "LT"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "LV"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2024/2025"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "A5"}, "display_value": "Rework needed from Agency", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.DEPARTMENTNAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "20c88462ba3557e7aae759665cbe331f693d398a", "container_name": "02. Campaigns", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "20c88462ba3557e7aae759665cbe331f693d398a", "originator_id": "20c88462ba3557e7aae759665cbe331f693d398a", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "02. Campaigns"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "container_name": "01.Standard", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "originator_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "01.Standard"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "container_name": "01.Poland", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "originator_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "01.Poland"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "container_name": "PL", "container_type_id": "GLOBALMARKETUNIT", "container_type_name": "L6 - MARKET UNIT", "inherited_metadata_values": [{"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "b94dd71b732e3c1df6ae63216c53d4d4b0e7f002"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E39"}, "display_value": "POLAND", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "13063087b81ea172db42e69ed8e8fa013cd5bfe0"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Local PL Editable Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "bf49ba2a40d0d0dccee4d5de7381659b106dd89a"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Nutella Local PL Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "3c0070e420882e3e18f6097811cb60a67239003b"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "7f3c1933b61e900457ea6e2aab750303882873d4"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "b0c960759e48c0fcdcb650417179a614da95e866"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Local PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "6f603fcc63415e266dc35cf2314d31357a2966bf"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "495fa4f08769a021cfa907dfb7a903fade9bd19a"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "e3b647e172a89e1e7cbdd2964faff1bca8dcf520"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "6870cca056b54cd400a9fbd4fe75513e69cedcdd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "container_name": "01. PL - Nutella", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "5efe2981e6f9afca7ed3fc91a171f02162ef23e3"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E008"}, "display_value": "POLAND", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Local PL Editable Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0de507c8b9d1f5942b6376b6c2a2b3ec1097e42e"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E39"}, "display_value": "POLAND", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "ca70a6d55e4277ecbef2a01a593c614501cbcf74"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "3e9d669ab1047383d0416ba40af75744148c94c8"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0e241fc386dcd91baa31a409e297169fe4a352c2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "2e3e0f2be0e487b540d9b63cb8c0e9ed9c6b1bb6"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "359c98154f230a60acc6b4eb048e129411d7a778"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "e92f9f10c0c29dda8261218c2c72a0baa66472f2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "15dff42c3b196ba3ae5b3c2ea33f00e347e6f654"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0ae044cd9dddf86cd9406c9edc3996b18c430be0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "name": "AMMC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AMMC", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LOCAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "7806fed6127b50c21f6b03e1f7b63f3dedc1e8d1"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "4c8a2d6e178638bfacfeaf3f7f6f1000304693a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "name": "Product Asset Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Asset Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCT_ASSET_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "5353bb35177d792b073acc634e010df2908fde32", "container_name": "EU", "container_type_id": "GEOGRAPHYLOCAL", "container_type_name": "L4 - GEOGRAPHY LOCAL", "inherited_metadata_values": [{"id": "FERRERO.MARKET.FOLDER.GLOBAL", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "4c4d4bf36bf8b1ace55f990e78d6332a9cb20990"}, "metadata_element": {"id": "FERRERO.MARKET.FOLDER.GLOBAL", "name": "Global/Local (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "LOCAL"}, "display_value": "Local", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local (Marketing)", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "GLOBALLOCAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_AREA", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "3dc200c993ab8263952dc6da1498026f615f45dd"}, "metadata_element": {"id": "MARKETING_AREA", "name": "AREA", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E010"}, "display_value": "EUROPE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "AREA", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "AREA", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "AREA", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "dc7749c3e113ec9e0b9e9a3840ea55673ca5e49f"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "f2d658a3829c2ea158ae70a4b4e7928bcf88f8e2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "972d0258a82de85672bd84d8af68cdb67ad3d3ca"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "1212505ad3fe4c9d7458568f3d95aeb4c4e5c37e"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "9d1dfdef55ff7a3eb03552988ddf729c7a0f5107"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "54f006eeb366121a29ee98da33d437615dcd34e0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "1fd8802010e30d44cebb2f3eb090b12ac550f97d"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "be0dc9a87262ee7fd165237b531ba3b7aa93a260"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "2f99f0f0f9e43fb34df9222c8b73a86fb78e473e"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "container_name": "Nutella", "container_type_id": "GLOBALBRAND", "container_type_name": "L3 - BRAND", "inherited_metadata_values": [{"id": "FERRERO.TABULAR.NEW.BRAND", "tabular": true, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "9bb1c183135f5240f09132aef59c4ea48c762381"}, "metadata_element": {"id": "FERRERO.TABULAR.NEW.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF30"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND (Marketing)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF30"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "BRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TABULAR_BRAND", "column_name": "BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.NEW.BRAND", "parent_table_name": "BRAND (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "tabular": true, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "a37b13c02cba799378211e17b73234a0d836f9b6"}, "metadata_element": {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "JV"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND(HARMONIZED)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "JV"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.HARMONIZEDBRAND", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_HARMONIZEDBRAND", "column_name": "HARMONIZEDBRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.HARMONIZEDBRAND", "parent_table_name": "BRAND(HARMONIZED)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "AGENCY.COLLABORATION", "tabular": false, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "183d6e0957a9940f9b18ef44f46d957802b63397"}, "metadata_element": {"id": "AGENCY.COLLABORATION", "name": "Agency collaboration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency collaboration", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "AGENCY_COLLABORATION", "column_name": "AGENCY_COLLABORATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "AGENCY.SHARING", "tabular": false, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "d0e2b725ddfdc452cc3ba750bbe8ec059c6b01ba"}, "metadata_element": {"id": "AGENCY.SHARING", "name": "Agency sharing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency sharing", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "AGENCY_SHARING", "column_name": "AGENCY_SHARING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "CONTENT.SCALING.AGENCYNAME", "tabular": false, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "f9dfa695cc5ef8cd3fafada4e44cfdaa1522d58a"}, "metadata_element": {"id": "CONTENT.SCALING.AGENCYNAME", "name": "Content Scaling agency name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Scaling agency name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENTSCALING_AGENCYNAME", "column_name": "CONTENTSCALING_AGENCYNAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "container_name": "01. Nutella Core", "container_type_id": "GLOBALSUBCATEGORY", "container_type_name": "L2 - SUBCATEGORY", "inherited_metadata_values": [{"id": "MARKETING_SUBCATEGORY", "tabular": false, "value_id": {"uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "originator_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "inherited_field_id": "3000ad591e09b5c75f85fc2ccbb9ebeb31b3ab78"}, "metadata_element": {"id": "MARKETING_SUBCATEGORY", "name": "SUBCATEGORY", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Mart-Nutella-Core"}, "display_value": "Nutella Core", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "SUBCATEGORY", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "SUBCATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "SUBCATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "tabular": true, "value_id": {"uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "originator_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "inherited_field_id": "2c751ce760d88c0e271925ea5149348106944bfa"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Subcategory Owner", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_SUBCATEGORY_OWNER_TM", "column_name": "SUBCATEGORY_OWNER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "parent_table_name": "Subcategory Owner", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "container_name": "Nutella", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "originator_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E04"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "originator_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final Approver BPS ", "values": [{"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "container_name": "00. Master Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "originator_id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00. Master Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "847c0ede25c32edd97546221fe54fb392431848d", "container_name": "NUTELLA XMAS - PL ADAPTATION 3", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA XMAS - PL ADAPTATION 3"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000599"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA_XMAS_-_PL_A_JV_LA_PL_NUT_0000599"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CHRISTMAS"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local adaptation of global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000576"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2021/2022"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "A1"}, "display_value": "Local Campaign ready for localization", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.DEPARTMENTNAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "103a6545e38f07f6e989a86c6ee7e10339a71a14", "container_name": "05. Final Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "103a6545e38f07f6e989a86c6ee7e10339a71a14", "originator_id": "103a6545e38f07f6e989a86c6ee7e10339a71a14", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "05. Final Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "container_name": "NUTELLA - CHRISTMAS 26 E2E", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA - CHRISTMAS 26 E2E"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000576"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA_-_CHRISTMA_JV_GL_MLT_NUT_0000576"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "BE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "BE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "BG"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "EE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "LT"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "LU"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "LV"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "MD"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "NL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "RO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2025/2026"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "B2"}, "display_value": "Master campaign received from Agency", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.DEPARTMENTNAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "container_name": "Global", "container_type_id": "GEOGRAPHYGLOBAL", "container_type_name": "L4 - GEOGRAPHY GLOBAL", "inherited_metadata_values": [{"id": "FERRERO.MARKET.FOLDER.GLOBAL", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "963db123044a8d3ff5d8f4aac56d35df77a7656c"}, "metadata_element": {"id": "FERRERO.MARKET.FOLDER.GLOBAL", "name": "Global/Local (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "GLOBAL"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local (Marketing)", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "GLOBALLOCAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_AREA", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "3a37ace6a53a93799e0e18773ba6c7e70305cc78"}, "metadata_element": {"id": "MARKETING_AREA", "name": "AREA", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AREA", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "AREA", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "AREA", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "9f64f884b41d2a8445f4d9cd60714e91024e8b13"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Global Editable Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "8847a6dfbebcf323a8170649b390af1a375c08b8"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Nutella Global Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "758e614412f11ecb58446966d328974daf253446"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "53df9e81ae46cf6bd2440643426224b1fb904aeb"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "name": "Published Security Policy - Restricted Visibility", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Global Published Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Security Policy - Restricted Visibility", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_VISIBILITY_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "6b410cc3e966037a3e534da53137d32856cd6bdb"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "b5f185da6208925fe296e074dbdfdd74678ad076"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "b9e4bba5fa277862093047710c3fccb44a553f91"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "a70b94dccf12d05fbcf6a1881e4726759d8714a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "134e6810dec03aed0a70f68bf16cdd3a390f99de"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "2c412cc87805c4f03622e671cd7cdd65402b5598"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "0f4d4a35b08b4d2aac7ce7cc18999a8e5f523edf"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.GLOBAL APPROVER", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "43af18c983afd26a477317ac0b608495d9e0b3df"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.GLOBAL APPROVER", "name": "Global approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "GLOBAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "00dacbe20687d3c5d0be9b4fc2997c572e3c36bf"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "0fbcf70c95f5d28645e7a6187f7c429d62e60380"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Global comm"}, "display_value": "Global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Global comm"}, "display_value": "Global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "container_name": "Oliver Read Only", "container_type_id": "L3 - Agency Structure", "container_type_name": "L3 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "55530f721f18c847e35d7c828edf53461b5014b0"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "330bb6f68316aab5c45f9fe34e047cce573c67cc"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "name": "Agency Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "AGENCY_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "e30e90d694f9935d4c15c4c78891beed8853a272"}, "metadata_element": {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "name": "Published Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "PUBLISHED_ASSET_SP_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "23b155c32d5c6142914b41458234c100812bbec8", "container_name": "Oliver", "container_type_id": "L2 - Agency Structure", "container_type_name": "L2 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.AGENCY", "tabular": false, "value_id": {"uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "originator_id": "23b155c32d5c6142914b41458234c100812bbec8", "inherited_field_id": "48fcbc397986aca5bb8722a95197dd0a46f19b4e"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_AGENCY", "column_name": "AGENCY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "container_name": "Z - Exchange", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "YY"}, "display_value": "AGENCIES", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Final Approver BPS ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}], "asset_lock_state_last_update_date": "2025-11-12T16:14:23.157+01:00", "content_lock_state_last_update_date": "2025-11-12T16:11:39.25+01:00"}, "language_code": null, "language_name": null, "subject_title": null, "file_extension": ".svg", "asset_type_name": null, "file_size_bytes": null, "duration_seconds": null, "upload_directory": "95c935af7e32719e82ee47bcae9cf772c01b51fa", "local_campaign_id": "C000000599", "original_filename": "NUTELLA2024-047xmas25pos", "global_master_folder_id": "847c0ede25c32edd97546221fe54fb392431848d", "global_master_campaign_id": "C000000576"} 2025-11-21 03:23:27.714219 \N 8 IMxPeR master_asset_created {"id": 8, "tags": null, "status": "active", "width_px": null, "height_px": null, "mime_type": "video/mp4", "asset_type": null, "brand_code": null, "brand_name": null, "categories": null, "created_at": "2025-11-21T03:23:42.104958", "deleted_at": null, "is_deleted": false, "updated_at": "2025-11-21T03:23:42.104958", "description": "Box File ID: 2052717080457\\nBox URL: https://app.box.com/file/2052717080457\\nDAM Asset ID: 850c36af1e2ccfe2ae65018a5b56517647103dd0", "ingested_at": "2025-11-21T03:23:42.104958", "ingested_by": null, "opentext_id": "850c36af1e2ccfe2ae65018a5b56517647103dd0", "tracking_id": "IMxPeR", "aspect_ratio": null, "country_code": null, "country_name": null, "full_metadata": {"name": "Nutella4Global_e2e.mp4", "links": {"links": [], "source_id": "850c36af1e2ccfe2ae65018a5b56517647103dd0"}, "locked": false, "deleted": false, "expired": false, "version": 1, "asset_id": "850c36af1e2ccfe2ae65018a5b56517647103dd0", "metadata": {"id": "ECOMMERCE", "name": "Marketing Asset", "type": "com.artesia.metadata.MetadataModel", "legacy_id": 116, "metadata_element_list": [{"id": "FERRERO.CATEGORY.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200054, "metadata_element_list": [{"id": "FERRERO.FIELD.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Status", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.CONTENT_STATUS", "edit_type": "COMBO_NOTNULL", "facetable": false, "searchable": true, "table_name": "FERRERO_CONTENT_STATUS_MD", "column_name": "CONTENT_STATUS", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9215, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRER.CATEGORY.ASSET_INFO", "name": "Asset Info", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200022, "metadata_element_list": [{"id": "FERRERO.FIELD.MKTG.ASSET TYPE", "name": "Asset Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "beautyshot"}, "display_value": "E-COMM: Beauty shot", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.ASSETTYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.FISCAL YEAR", "name": "Release Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2025/2026"}, "display_value": "2025/2026", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Release Fiscal Year", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_DOMAIN_FISCAL_YEAR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "FISCAL__YEAR", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "name": "Main Languages", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1210, "metadata_element_list": [{"id": "MAIN_LANGUAGES", "name": "MAIN LANGUAGES", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "MAIN LANGUAGES", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MAIN LAGUAGES_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MAIN_LANGUAGE_TABLE", "column_name": "MAIN_LANGUAGE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "parent_table_name": "Main Languages", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.ASSET DESCRIPTION", "name": "Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Description", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "DESCR", "data_length": 249, "description": "Descriptive information", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.FLAVOUR", "name": "Flavour", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Flavour", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.FLAVOUR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FLAVOUR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.SIZE", "name": "Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Size", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.SIZE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SIZE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1241, "metadata_element_list": [{"id": "FERRERO.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Compliance", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ASSETCOMPLIANCE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_COMPLIANCE", "column_name": "ASSET_COMPLIANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "parent_table_name": "Asset Compliance", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.TAG DETAILS", "name": "Tag Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 118, "metadata_element_list": [{"id": "ARTESIA.FIELD.TAG", "name": "Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Tag", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.TAGS", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "OTMM_TAGS", "column_name": "TAG", "data_length": 80, "description": "Tag", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG CONFIDENCE", "name": "Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Confidence", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG TYPE", "name": "Tag Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Tag Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "TAG_TYPE", "data_length": 10, "description": "Tag Type", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED BY", "name": "Associated By", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Associated By", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_BY", "data_length": 10, "description": "Associated By", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED DATE", "name": "Associated Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Associated Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_DATE", "data_length": 10, "description": "Associated Date", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.STATE", "name": "Global/Local", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "GLOBAL"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO_NOTNULL", "facetable": true, "searchable": true, "table_name": "FERRERO_IC_ASSET_DETAILS", "column_name": "ASSET_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.ASPECT RATIO", "name": "Aspect Ratio (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio (Marketing)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASPECT_RATIO", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASPECT_RATIO", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "name": "Tag (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1222, "metadata_element_list": [{"id": "MARKETING_TAG", "name": "Marketing Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Marketing Tag", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.DOMAIN.TAG", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TAG_MARKET", "column_name": "TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "parent_table_name": "Tag (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.TAGS", "name": "Auto-Generated Tags", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Auto-Generated Tags", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "AUTO_GENERATED_TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CERTIFIER", "name": "Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approver", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.MARKETING.FIELD.APPROVAL DATE", "name": "Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.LEGAL APPROVAL DATE", "name": "Legal Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CERTIFIER", "name": "IA&CC Certifier", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Certifier", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CC APPROVAL DATE", "name": "IA&CC Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "name": "Extended Approval", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1230, "metadata_element_list": [{"id": "FERRERO.FIELD.EXTENDED.APPROVAL", "name": "Extended Approval required by:", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended Approval required by:", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COMMENTS", "name": "Comment", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comment", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "COMMENTS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.DATE", "name": "Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USERS", "name": "User ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "User ID", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "USERS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXTENDED.JOBID", "name": "Extended JobID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended JobID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.MIGRATION.INDEX", "name": "Migration Index", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Migration Index", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MIGRATION.INDEX", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MIGRATION_INDEX", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "FERRERO_MARKET_MARKETING_CREATOR", "name": "Marketing Creator", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Marketing Creator", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.CREATOR", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MARKETING_CREATOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "ARTESIA.FIELD.IS LATEST VERSION", "name": "Is Latest Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Y"}, "display_value": "Yes", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Is Latest Version", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.YES_NO", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "IS_LATEST_VERSION", "data_length": 1, "description": "Is this the latest version? (Y/N)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET VERSION", "name": "Asset Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 1}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Version", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "INTEGER", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "VERSION", "data_length": 12, "description": "Version number of asset", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET_ID", "name": "Asset ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "850c36af1e2ccfe2ae65018a5b56517647103dd0"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset ID", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "LOGICAL_UOI_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.ECOMMERCE STATUS", "name": "Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "PUBLISHED"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Status", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "ASSET_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CREATOR", "name": "Uploaded by", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Uploaded by", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_USER_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.FIELD.CREATION DATE", "name": "Upload Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-11-07T13:00:13.49+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Upload Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_DT", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.ASSET NAME", "name": "Asset Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella4Global_e2e.mp4"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Name", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "description": "Original name of master object", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.CONTENT TYPE", "name": "Content Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "VIDEO"}, "display_value": "Video", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Type", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.CONTENT_TYPES", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "CONTENT_TYPE", "data_length": 8, "description": "Content Type", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.MIME TYPE", "name": "File Extension", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "video/mp4"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Extension", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_MIME_TYPE", "data_length": 80, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.FILE.SIZE", "name": "File Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "long", "value": 7303279}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Size", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "LONG", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_SIZE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP RESOLUTION", "name": "Bitmap Resolution", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Resolution", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_RESOLUTION", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP WIDTH", "name": "Bitmap Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Width", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_WIDTH", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP HEIGHT", "name": "Bitmap Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Height", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_HEIGHT", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.VIDEO.BIT_RATE", "name": "Bitrate", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 2594415.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitrate", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "BIT_RATE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.EMBEDDED.FIELD.DURATION", "name": "Duration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00:00:22:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Duration", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "DURATION_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.ASPECT RATIO", "name": "Aspect Ratio", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "1.778"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "ASPECT_RATIO", "data_length": 30, "displayable": false, "instructions": "ASPECT_RATIO", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME HEIGHT", "name": "Frame Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 1080}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Height", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_HEIGHT", "data_length": 12, "displayable": true, "instructions": "FRAME_HEIGHT", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME WIDTH", "name": "Frame Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 1920}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Width", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_WIDTH", "data_length": 12, "displayable": true, "instructions": "FRAME_WIDTH", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.ASPECT.RATIO.POC", "name": "Aspect Ratio(POC)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "16:9"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio(POC)", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASPECT_RATIO_TABLE", "column_name": "ASPECT_RATIO", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "PRODUCT.DETAILS", "name": "Product Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200029, "metadata_element_list": [{"id": "FERRERO.TABLE.EANCODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1208, "metadata_element_list": [{"id": "EAN_CODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "EAN CODE/ 77 CODE", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "EAN.CODE", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "EAN_CODE", "column_name": "EAN_CODE_DESCRIPTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "COUNTRY", "name": "COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "EAN_CODE", "column_name": "COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKETING.ADVANCE.PRODUCT.LINK", "name": "Asset-to-product relation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset-to-product relation", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_MARKETING_ADVANCE_PRODUCT_LINK", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ADVANCE_PRODUCT_LINK", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 10182, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.SUB BRAND", "name": "Sub-Brands", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Sub-Brands", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.SUBBRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "SUB_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT WEIGHT", "name": "Product Weight", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Weight", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_WEIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.CONSUMER UNIT PACKAGING", "name": "Consumer Unit Packaging", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Consumer Unit Packaging", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PACK", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "CONSUMER_UNIT_PACKAGING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.4 DIGIT CODE", "name": "4 Digit Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "4 Digit Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "DIGITCODE", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERREO.ECOM.RETAILER_SPECIFIC_FIELD", "name": "Retailer Specific", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Retailer Specific", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "RETAILER_SPECIFIC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "cascading_group_id": "FERRERO.RETAILER.SPECIFIC", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY START PERIOD", "name": "Asset validity start period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity start period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_STARTING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY END PERIOD", "name": "Asset validity end period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity end period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_ENDING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.ASSET.NAMING.CONVENTION", "name": "Does asset need GS1 naming convention", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Does asset need GS1 naming convention", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASSETNAMINGCONVENTION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_NAMING_CONVENTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9515, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT VIEW", "name": "Product View", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product View", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT VIEW", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_VIEW", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT ANGLE", "name": "Product Angle", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Angle", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT.ANGLE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_ANGLE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT STATE", "name": "Product State", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product State", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT STATE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PROMOTION ID", "name": "Promo ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Promo ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROMO_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.BUSINESS.ASSET TYPE", "name": "Asset Type (eDAM)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Type (eDAM)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "OTMM.DOMAIN.OTMM_ASSETTYPE_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_BUSINESS_INFO", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7244, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200048, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.AGENCY NAME", "name": "Agency Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Agency Name", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.AGENCY_NAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AGENCY_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7336, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.CREATIX", "name": "CreativeX", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200059, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.CREATIVEX", "name": "Confidence", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1245, "metadata_element_list": [{"id": "FERRERO.TAB.FIELD.CREATIVEX", "name": "Platform > Rating (%)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Platform > Rating (%)", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_CREATIVEX", "column_name": "CREATIVEX_NEW", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CREATIVEX", "parent_table_name": "Confidence", "cascading_group_id": "FERRERO.CREATIVEX.CHAR", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.CREATIVEX LINK", "name": "CreativeX Hyperlink", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "CreativeX Hyperlink", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_CREATIVEX", "column_name": "CREATIVE_LINK", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.IP_RIGHTS", "name": "IP Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200046, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.IPRIGHT", "name": "IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "IP Rights", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.IPRIGHTS", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IP_RIGHTS", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.BUYOUT", "name": "Touchpoint Scope", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Touchpoint Scope", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.TOTAL_BUYOUT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TOTAL_BUYOUT", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.FERRERO PROPERTY", "name": "Ferrero Property", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Ferrero Property", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.FERRERO_PROPERTY", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FERRERO_PROPERTY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200035, "metadata_element_list": [{"id": "FERRERO.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1209, "metadata_element_list": [{"id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "name": "IP Coverage, Area, Region & Market Unit", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Coverage, Area, Region & Market Unit", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "IPCOVERAGE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "cascading_group_id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHT TYPE", "name": "Copyright Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHT_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.MEDIATYPE", "name": "Media Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Media Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MEDIA_TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "MEDIA_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE FROM", "name": "Expiration of Usage - From", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - From", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_FROM", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE TO", "name": "Expiration of Usage - To", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - To", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_TO", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO._DURATION", "name": "IP Duration", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Duration", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "ECOM_DURATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHTTYPE DETAILS", "name": "Copyright Type Details", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type Details", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHTTYPE_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 6, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.MARKET.VID_STAT_RIGHT", "name": "Video & Static Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200047, "metadata_element_list": [{"id": "FERRERO.MARKET.VID_N_STAT", "name": "Video and Static Right", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Video and Static Right", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VID_AND_STAT_RIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.VID_STAT_TYPE", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1221, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.TYPE_VID", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Video & Static Right", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TYPE_VID_STAT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_MARKET_TYPE_VID_STAT", "column_name": "TYPE_OF_VIDEO_STATIC_RIGHT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.VID_STAT_TYPE", "parent_table_name": "Type of Video & Static Right", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKET.PROD_COMPANY", "name": "Production House", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Production House", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.PRODUCT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200050, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.LICENSIN", "name": "Licensing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Licensing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSING", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "cascading_group_id": "FERRERO.MARKET.CG.LICENSE", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.SPOT_DETAILS", "name": "Spot Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200049, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.SPOT_VERSION", "name": "Spot Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Version", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_VERSION", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_VERSION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.SPOT_TYPE", "name": "Spot Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_TYPE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.DIRECTOR_NAME", "name": "Director Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Director Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "DIRECTOR_NAME", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VIDEO_POST_PROD_COMPANY", "name": "Video Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VID_POST_PROD_CONTACT", "name": "Video Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_COMPANY", "name": "Audio Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_CONTACT", "name": "Audio Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.BROADCASTER.CODE", "name": "Broadcaster Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Broadcaster Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BROADCASTER_CODE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.TECHNICAL_VALIDATION", "name": "Technical Validation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Technical Validation", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TECHNICAL_VALIDATION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS", "name": "Media Analysis", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1002, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "name": "Categories", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 105, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY NAME", "name": "Category Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Category Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "NAME", "data_length": 100, "description": "Category Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY CONFIDENCE", "name": "Category Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Category Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "CONFIDENCE", "data_length": 10, "description": "Category Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES COUNT", "name": "Faces Count", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Faces Count", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACECOUNT", "column_name": "COUNT", "data_length": 10, "description": "Faces Count", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "name": "Face Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 106, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME", "name": "Recognized Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME", "data_length": 2000, "description": "Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME CONFIDENCE", "name": "Recognized Name Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME_CONFIDENCE", "data_length": 10, "description": "Name Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE", "name": "Person Age", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE", "data_length": 10, "description": "Person Age", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE CONFIDENCE", "name": "Person Age Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Person Age Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_CONFIDENCE", "data_length": 10, "description": "Person Age Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER", "name": "Gender", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Gender", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.GENDER", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER", "data_length": 40, "description": "Gender", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER CONFIDENCE", "name": "Gender Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Gender Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER_CONFIDENCE", "data_length": 10, "description": "Gender Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.FACE COORDS", "name": "Face Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "FACE_COORDS", "data_length": 200, "description": "Face Coordinates like postion, height,width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE GROUP", "name": "Person Age Group", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age Group", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.AGE GROUP", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_GROUP", "data_length": 10, "description": "Person Age Group", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "name": "Safe Content", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 107, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONTENT TYPE", "name": "Safe Content Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Safe Content Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENTS", "data_length": 20, "description": "Safe Content Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONFIDENCE", "name": "Content Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Content Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENT_CONFIDENCE", "data_length": 10, "description": "Safe Content Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "name": "Colors", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 108, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.NAME", "name": "Color", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Color", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "NAME", "data_length": 25, "description": "COLOR", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.PROPORTION", "name": "Color Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Color Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "PROPORTION", "data_length": 10, "description": "Proportion", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.FOREGROUND", "name": "Foreground Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Foreground Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "FOREGROUND", "data_length": 25, "description": "Foreground Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.BACKGROUND", "name": "Background Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Background Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "BACKGROUND", "data_length": 25, "description": "Background Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.ISBW", "name": "Is Black and White", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Is Black and White", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "ISBW", "data_length": 10, "description": "Is Black and White", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "name": "Captions", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 109, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION TEXT", "name": "Caption Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Caption Text", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "TEXT", "data_length": 2000, "description": "Caption Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION CONFIDENCE", "name": "Caption Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Caption Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "CAPTION_CONFIDENCE", "data_length": 10, "description": "Caption Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "name": "Image Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 110, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.IMAGE TYPE", "name": "Analysis Image Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Analysis Image Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_IMAGE_TYPE", "column_name": "TYPE", "data_length": 100, "description": "Image Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "parent_table_name": "Image Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.DATE", "name": "Date: Media Analysis", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-11-07T13:02:14+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date: Media Analysis", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MEDIA_ANALYSIS_DATE", "data_length": 25, "description": "Date Media Analysis was done on the asset.", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR LANGUAGE", "name": "Image Text Language", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Image Text Language", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "LANGUAGE", "data_length": 10, "description": "OCR data language", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR TEXT", "name": "Text on Image", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Text on Image", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "TEXT", "data_length": 4000, "description": "OCR Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "name": "Embedded Brand Info", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 119, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.NAME", "name": "Embedded Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Embedded Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Embedded Brand Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.CONFIDENCE", "name": "Embedded Brand Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Embedded Brand Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Embedded Brand Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.COORDINATES", "name": "Embedded Brand Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Embedded Brand Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "COORDINATES", "data_length": 200, "description": "Embedded Brand Coordinates like position, height, width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "HYBRIS.PRODUCT.INFO", "name": "PIM Item Reference", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200027, "metadata_element_list": [{"id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "name": "Hybris Item Reference", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1206, "metadata_element_list": [{"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ID", "name": "Hybris Item ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ID", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT TAG NAME", "name": "Hybris Assignment Label", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Assignment Label", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_TAG_NAME", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ATTRIBUTE NAME", "name": "Hybris Attribute Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Attribute Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ATTRIBUTE_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT CATALOG NAME", "name": "Hybris Catalog Mnemonic", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Catalog Mnemonic", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_CATALOG_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT PK", "name": "Hybris Item PK", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item PK", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_PK", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.SYSTEM ID", "name": "Hybris System ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris System ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "SYSTEM_ID", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.ASSIGNED", "name": "Assigned", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Assigned", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "ASSIGNED", "column_name": "ASSIGNED", "data_length": 38, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PIM TYPE", "name": "PIM Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "PIM Type", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_PIM_TYPE", "column_name": "PIM_TYPE", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS VIDEO", "name": "Media Analysis Video", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1003, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "name": "Labels", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 113, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.ID", "name": "Label Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Label Id", "values": [{"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 1}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 2}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 3}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 4}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 5}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 6}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 7}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 8}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "ID", "data_length": 40, "description": "Label Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.NAME", "name": "Label Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "dessert"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Label Name", "values": [{"value": {"type": "string", "value": "dessert"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "indoor"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "food"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "pancake"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "tableware"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "table"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "baked goods"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "snack"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "wall"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "NAME", "data_length": 40, "description": "Label Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.APPEARANCES", "name": "Label Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:09\\",\\"endTime\\":\\"0:00:22.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Label Appearances", "values": [{"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:09\\",\\"endTime\\":\\"0:00:22.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:00\\",\\"endTime\\":\\"0:00:12.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:11\\",\\"endTime\\":\\"0:00:20.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:14\\",\\"endTime\\":\\"0:00:22.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:03\\",\\"endTime\\":\\"0:00:09.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:05\\",\\"endTime\\":\\"0:00:10.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:09\\",\\"endTime\\":\\"0:00:14.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:09\\",\\"endTime\\":\\"0:00:14.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:00\\",\\"endTime\\":\\"0:00:00.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "APPEARANCES", "data_length": 0, "description": "Label Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "name": "Sentiments", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 114, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.ID", "name": "Sentiment Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "ID", "data_length": 40, "description": "Sentiment Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.NAME", "name": "Sentiment Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "NAME", "data_length": 40, "description": "Sentiment Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.APPEARANCES", "name": "Sentiment Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "APPEARANCES", "data_length": 0, "description": "Sentiment Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.SEEN.DURATION.RATIO", "name": "Sentiment Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Sentiment Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "name": "Keywords", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 115, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.ID", "name": "Keyword Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "ID", "data_length": 40, "description": "Keyword Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.NAME", "name": "Keyword Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "NAME", "data_length": 40, "description": "Keyword Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.APPEARANCES", "name": "Keyword Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Keyword Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "name": "Faces", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 111, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.ID", "name": "Face Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "ID", "data_length": 40, "description": "Face Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.NAME", "name": "Face Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "NAME", "data_length": 40, "description": "Face Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.TITLE", "name": "Face Title", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Title", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "TITLE", "data_length": 249, "description": "Face Title", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.DESCRIPTION", "name": "Face Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Face Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.APPEARANCES", "name": "Face Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "APPEARANCES", "data_length": 0, "description": "Face Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SPEAKER.FACE.ID", "name": "Video Speaker Object Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Speaker Object Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "THUMBNAIL_OBJECT_ID", "data_length": 40, "description": "Video Speaker Object Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.SEEN.DURATION.RATIO", "name": "Face Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "SEEN_DURATION_RATIO", "data_length": 20, "description": "Face Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "name": "Brands", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 112, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.ID", "name": "Video Brand Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Brand Id", "values": [{"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "ID", "data_length": 40, "description": "Brand Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.NAME", "name": "Video Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Brand Name", "values": [{"value": {"type": "string", "value": "Nutella"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Brand Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.DESCRIPTION", "name": "Video Brand Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella is the brand name of a sweetened hazelnut cocoa spread. Manufactured by the Italian company Ferrero, it was introduced to the market in 1964. Pietro Ferrero, who owned a bakery in Alba, Piedmont, an area known for the production of hazelnuts, sold an initial batch of 300 kilograms (660 lb) of \\"Pasta Gianduja\\" in 1946."}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Brand Description", "values": [{"value": {"type": "string", "value": "Nutella is the brand name of a sweetened hazelnut cocoa spread. Manufactured by the Italian company Ferrero, it was introduced to the market in 1964. Pietro Ferrero, who owned a bakery in Alba, Piedmont, an area known for the production of hazelnuts, sold an initial batch of 300 kilograms (660 lb) of \\"Pasta Gianduja\\" in 1946."}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Brand Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.WIKIURL", "name": "Video Brand Wiki URL", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "http://en.wikipedia.org/wiki/Nutella"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Brand Wiki URL", "values": [{"value": {"type": "string", "value": "http://en.wikipedia.org/wiki/Nutella"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "WIKIURL", "data_length": 200, "description": "Brand Wiki URL", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.APPEARANCES", "name": "Video Brand Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:00\\",\\"endTime\\":\\"0:00:22.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Brand Appearances", "values": [{"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:00\\",\\"endTime\\":\\"0:00:22.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Brand Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.SEEN.DURATION.RATIO", "name": "Video Brand Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "1.0"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Brand Seen Duration Ratio", "values": [{"value": {"type": "string", "value": "1.0"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Brand Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "name": "Speeches", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 116, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.ID", "name": "SpeechText Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "SpeechText Id", "values": [{"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "ID", "data_length": 40, "description": "SpeechText Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXT", "name": "Speech Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "nutella"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Speech Text", "values": [{"value": {"type": "string", "value": "nutella"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXT", "data_length": 1000, "description": "Speech Text", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXTTYPE", "name": "Speech Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "OCR"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Speech Type", "values": [{"value": {"type": "string", "value": "OCR"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXTTYPE", "data_length": 40, "description": "Speech Type", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.START TIME", "name": "Speech Start Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "0:00:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Speech Start Time", "values": [{"value": {"type": "string", "value": "0:00:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "START_TIME", "data_length": 40, "description": "Speech Start Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.END TIME", "name": "Speech End Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "0:00:22.04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Speech End Time", "values": [{"value": {"type": "string", "value": "0:00:22.04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "END_TIME", "data_length": 40, "description": "Speech End Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "name": "Speakers", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 122, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.ID", "name": "Speaker Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "ID", "data_length": 40, "description": "Speaker Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.NAME", "name": "Speaker Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "NAME", "data_length": 100, "description": "Speaker Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.APPEARANCES", "name": "Speaker Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "APPEARANCES", "data_length": 0, "description": "Speaker Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.FIELDGROUP.LOCALASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200057, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1239, "metadata_element_list": [{"id": "FERRERO.FIELD.COUNTRY", "name": "LOCAL COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "LOCAL COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USER", "name": "USER", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "USER", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_USER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.ASSOCIATION", "name": "TYPE OF ASSOCIATION", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "TYPE OF ASSOCIATION", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_ASSOCIATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.VALUE", "name": "VALUE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "VALUE", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_VALUE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}], "has_multilingual_fields": false}, "mime_type": "video/mp4", "path_list": [{"parents": [{"id": "22ffc2d88af095463e48ab79e09886102f039563", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "22ffc2d88af095463e48ab79e09886102f039563", "sequence_number": 0}, {"id": "c6e6896565298d09d364f501aecd10d0998d8437", "name": "NUTELLA XMAS - PL ADAPTATION 2", "container_state": "NORMAL", "original_uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "sequence_number": 0}, {"id": "20c88462ba3557e7aae759665cbe331f693d398a", "name": "02. Campaigns", "container_state": "NORMAL", "original_uoi_id": "20c88462ba3557e7aae759665cbe331f693d398a", "sequence_number": 0}, {"id": "1638869b9b347c39842effc7e5ff965de47e8e65", "name": "01.Standard", "container_state": "NORMAL", "original_uoi_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "sequence_number": 0}, {"id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "name": "01.Poland", "container_state": "NORMAL", "original_uoi_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "sequence_number": 0}, {"id": "341bbf240ea033435cc225cd1add5c009bc067d7", "name": "PL", "container_state": "NORMAL", "original_uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "sequence_number": 0}, {"id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "name": "01. PL - Nutella", "container_state": "NORMAL", "original_uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "sequence_number": 0}, {"id": "5353bb35177d792b073acc634e010df2908fde32", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 5, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "sequence_number": 0}, {"id": "847c0ede25c32edd97546221fe54fb392431848d", "name": "NUTELLA XMAS - PL ADAPTATION 3", "container_state": "NORMAL", "original_uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "sequence_number": 0}, {"id": "20c88462ba3557e7aae759665cbe331f693d398a", "name": "02. Campaigns", "container_state": "NORMAL", "original_uoi_id": "20c88462ba3557e7aae759665cbe331f693d398a", "sequence_number": 0}, {"id": "1638869b9b347c39842effc7e5ff965de47e8e65", "name": "01.Standard", "container_state": "NORMAL", "original_uoi_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "sequence_number": 0}, {"id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "name": "01.Poland", "container_state": "NORMAL", "original_uoi_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "sequence_number": 0}, {"id": "341bbf240ea033435cc225cd1add5c009bc067d7", "name": "PL", "container_state": "NORMAL", "original_uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "sequence_number": 0}, {"id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "name": "01. PL - Nutella", "container_state": "NORMAL", "original_uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "sequence_number": 0}, {"id": "5353bb35177d792b073acc634e010df2908fde32", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "103a6545e38f07f6e989a86c6ee7e10339a71a14", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "103a6545e38f07f6e989a86c6ee7e10339a71a14", "sequence_number": 0}, {"id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "name": "NUTELLA - CHRISTMAS 26 E2E", "container_state": "NORMAL", "original_uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "sequence_number": 0}, {"id": "413c776f4416163b88737d53bb72dfe23bfd2430", "name": "Global", "container_state": "NORMAL", "original_uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "sequence_number": 0}, {"id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "name": "Oliver Read Only", "container_state": "NORMAL", "original_uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "sequence_number": 0}, {"id": "23b155c32d5c6142914b41458234c100812bbec8", "name": "Oliver", "container_state": "NORMAL", "original_uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "sequence_number": 0}, {"id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "name": "Z - Exchange", "container_state": "NORMAL", "original_uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "22ffc2d88af095463e48ab79e09886102f039563", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "22ffc2d88af095463e48ab79e09886102f039563", "sequence_number": 0}, {"id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "name": "Oliver Read Only", "container_state": "NORMAL", "original_uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "sequence_number": 0}, {"id": "23b155c32d5c6142914b41458234c100812bbec8", "name": "Oliver", "container_state": "NORMAL", "original_uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "sequence_number": 0}, {"id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "name": "Z - Exchange", "container_state": "NORMAL", "original_uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "sequence_number": 0}], "complete": true, "sequence_number": 5, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}], "creator_id": "1003", "asset_state": "NORMAL", "checked_out": false, "folder_path": "", "content_size": 7303279, "content_type": "VIDEO", "content_state": "NORMAL", "date_imported": "2025-11-07T13:00:13.49+01:00", "import_job_id": 216243, "streaming_url": "https://ppr.dam.ferrero.com/video/data/repository/original/vol0/224/28a877dd76e64d355af0afbddccd49d37e26bf7e_proxy.mp4", "subscribed_to": false, "collection_ids": [], "latest_version": true, "legacy_model_id": 116, "content_editable": true, "content_sub_type": "WHOLE", "import_user_name": "bizAdmin", "date_last_updated": "2025-11-07T13:03:08.623+01:00", "metadata_model_id": "ECOMMERCE", "original_asset_id": "850c36af1e2ccfe2ae65018a5b56517647103dd0", "rendition_content": {"preview_content": {"id": "68b31bace65c2b0bb908d48b63176e5ed99f04cf", "url": "/otmmapi/v6/renditions/68b31bace65c2b0bb908d48b63176e5ed99f04cf", "name": "Nutella4Global_e2e.mp4", "width": 640, "height": 360, "mime_type": "video/mp4", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "PREVIEW", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\224\\\\28a877dd76e64d355af0afbddccd49d37e26bf7e_proxy.mp4", "content_size": 2007710, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "thumbnail_content": {"id": "3932020d0cca7bdb85feaf8013561645c8b33a37", "url": "/otmmapi/v6/renditions/3932020d0cca7bdb85feaf8013561645c8b33a37", "name": "3932020d0cca7bdb85feaf8013561645c8b33a37.jpg", "width": 500, "height": 282, "mime_type": "image/jpeg", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "THUMBNAIL", "content_path": "data\\\\repository\\\\thumb\\\\vol0\\\\198\\\\3932020d0cca7bdb85feaf8013561645c8b33a37_3932020d0cca7bdb85feaf8013561645c8b33a37.jpg", "content_size": 27868, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "video_rollover_content": {"id": "f641dadb304033d4076331e171c7592c7c249dec", "url": "/otmmapi/v6/renditions/f641dadb304033d4076331e171c7592c7c249dec", "name": "Nutella4Global_e2e.GIF", "width": 500, "height": 282, "mime_type": "image/gif", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "ROLLOVER", "content_path": "data\\\\repository\\\\rollover\\\\vol0\\\\16\\\\f641dadb304033d4076331e171c7592c7c249dec_rollover.gif", "content_size": 6611477, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_content_info": {"master_content": {"id": "7e73e51f06e860a634047ee3b4d93bfa088d5b17", "url": "/otmmapi/v6/renditions/7e73e51f06e860a634047ee3b4d93bfa088d5b17", "name": "Nutella4Global_e2e.mp4", "width": -1, "height": -1, "mime_type": "video/mp4", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\224\\\\Nutella4Global_e2e_7e73e51f06e860a634047ee3b4d93bfa088d5b17.mp4", "content_size": 7303279, "unit_of_size": "BYTES", "content_checksum": "f36d075782a514bcbe9765a633e9f843", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "supporting_content": [{"id": "28a877dd76e64d355af0afbddccd49d37e26bf7e", "url": "/otmmapi/v6/renditions/28a877dd76e64d355af0afbddccd49d37e26bf7e", "name": "Nutella4Global_e2e.mp4", "width": 640, "height": 360, "mime_type": "video/mp4", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "SUPPORTING", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\224\\\\28a877dd76e64d355af0afbddccd49d37e26bf7e_proxy.mp4", "content_size": 2007710, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}]}, "asset_state_user_id": "1003", "master_content_info": {"id": "7e73e51f06e860a634047ee3b4d93bfa088d5b17", "url": "/otmmapi/v6/renditions/7e73e51f06e860a634047ee3b4d93bfa088d5b17", "name": "Nutella4Global_e2e.mp4", "width": -1, "height": -1, "mime_type": "video/mp4", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\224\\\\Nutella4Global_e2e_7e73e51f06e860a634047ee3b4d93bfa088d5b17.mp4", "content_size": 7303279, "unit_of_size": "BYTES", "content_checksum": "f36d075782a514bcbe9765a633e9f843", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "delivery_service_url": "https://ppr.dam.ferrero.com/adaptivemedia/rendition?id=850c36af1e2ccfe2ae65018a5b56517647103dd0", "product_associations": false, "security_policy_list": [{"id": 5467, "name": "Marketing Viewer", "status": "NORMAL", "created_by": "1003", "create_date": "2023-10-06T16:52:07.297+02:00", "description": "Marketing Viewer", "ownership_type": "PUBLIC"}], "thumbnail_content_id": "3932020d0cca7bdb85feaf8013561645c8b33a37", "content_state_user_id": "1003", "content_state_user_name": "OTMM BusinessAdmin", "asset_lock_state_user_id": "1003", "metadata_state_user_name": "OTMM BusinessAdmin", "progressive_download_url": "https://ppr.dam.ferrero.com/video/data/repository/original/vol0/224/28a877dd76e64d355af0afbddccd49d37e26bf7e_proxy.mp4", "access_control_descriptor": {"permissions_map": {"entry": [{"key": "text.securityPolicy.permission.Custom04Permission", "value": true}, {"key": "text.securityPolicy.permission.ContentEditPermission", "value": true}, {"key": "text.securityPolicy.permission.AssetViewPermission", "value": true}, {"key": "text.securityPolicy.permission.ProjectViewPermission", "value": true}, {"key": "text.securityPolicy.permission.MembershipEditPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom03Permission", "value": true}, {"key": "text.securityPolicy.permission.MetaDataEditPermission", "value": true}, {"key": "text.securityPolicy.permission.EditParentsPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom02Permission", "value": true}, {"key": "text.securityPolicy.permission.ExportPermission", "value": true}, {"key": "text.securityPolicy.permission.SummaryViewPermission", "value": true}, {"key": "text.securityPolicy.permission.PreviewViewPermission", "value": true}, {"key": "text.securityPolicy.permission.SubscribePermission", "value": true}, {"key": "text.securityPolicy.permission.DeleteAssetPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom01Permission", "value": true}]}}, "content_lock_state_user_id": "1003", "asset_state_last_update_date": "2025-11-07T13:03:08.623+01:00", "content_lock_state_user_name": "bizAdmin", "metadata_lock_state_user_name": "bizAdmin", "content_state_last_update_date": "2025-11-07T13:00:14.87+01:00", "inherited_metadata_collections": [{"container_id": "22ffc2d88af095463e48ab79e09886102f039563", "container_name": "00. Master Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "22ffc2d88af095463e48ab79e09886102f039563", "originator_id": "22ffc2d88af095463e48ab79e09886102f039563", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00. Master Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "c6e6896565298d09d364f501aecd10d0998d8437", "container_name": "NUTELLA XMAS - PL ADAPTATION 2", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA XMAS - PL ADAPTATION 2"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000598"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA_XMAS_-_PL__JV_LA_MLT_NUT_0000598"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CHRISTMAS"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local adaptation of global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000576"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "EE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "EE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "LT"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "LV"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2024/2025"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "A5"}, "display_value": "Rework needed from Agency", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.DEPARTMENTNAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "20c88462ba3557e7aae759665cbe331f693d398a", "container_name": "02. Campaigns", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "20c88462ba3557e7aae759665cbe331f693d398a", "originator_id": "20c88462ba3557e7aae759665cbe331f693d398a", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "02. Campaigns"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "container_name": "01.Standard", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "originator_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "01.Standard"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "container_name": "01.Poland", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "originator_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "01.Poland"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "container_name": "PL", "container_type_id": "GLOBALMARKETUNIT", "container_type_name": "L6 - MARKET UNIT", "inherited_metadata_values": [{"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "b94dd71b732e3c1df6ae63216c53d4d4b0e7f002"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E39"}, "display_value": "POLAND", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "13063087b81ea172db42e69ed8e8fa013cd5bfe0"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Local PL Editable Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "bf49ba2a40d0d0dccee4d5de7381659b106dd89a"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Nutella Local PL Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "3c0070e420882e3e18f6097811cb60a67239003b"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "7f3c1933b61e900457ea6e2aab750303882873d4"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "b0c960759e48c0fcdcb650417179a614da95e866"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Local PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "6f603fcc63415e266dc35cf2314d31357a2966bf"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "495fa4f08769a021cfa907dfb7a903fade9bd19a"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "e3b647e172a89e1e7cbdd2964faff1bca8dcf520"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "6870cca056b54cd400a9fbd4fe75513e69cedcdd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "container_name": "01. PL - Nutella", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "5efe2981e6f9afca7ed3fc91a171f02162ef23e3"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E008"}, "display_value": "POLAND", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Local PL Editable Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0de507c8b9d1f5942b6376b6c2a2b3ec1097e42e"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E39"}, "display_value": "POLAND", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "ca70a6d55e4277ecbef2a01a593c614501cbcf74"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "3e9d669ab1047383d0416ba40af75744148c94c8"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0e241fc386dcd91baa31a409e297169fe4a352c2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "2e3e0f2be0e487b540d9b63cb8c0e9ed9c6b1bb6"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "359c98154f230a60acc6b4eb048e129411d7a778"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "e92f9f10c0c29dda8261218c2c72a0baa66472f2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "15dff42c3b196ba3ae5b3c2ea33f00e347e6f654"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0ae044cd9dddf86cd9406c9edc3996b18c430be0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "name": "AMMC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AMMC", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LOCAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "7806fed6127b50c21f6b03e1f7b63f3dedc1e8d1"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "4c8a2d6e178638bfacfeaf3f7f6f1000304693a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "name": "Product Asset Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Asset Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCT_ASSET_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "5353bb35177d792b073acc634e010df2908fde32", "container_name": "EU", "container_type_id": "GEOGRAPHYLOCAL", "container_type_name": "L4 - GEOGRAPHY LOCAL", "inherited_metadata_values": [{"id": "FERRERO.MARKET.FOLDER.GLOBAL", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "4c4d4bf36bf8b1ace55f990e78d6332a9cb20990"}, "metadata_element": {"id": "FERRERO.MARKET.FOLDER.GLOBAL", "name": "Global/Local (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "LOCAL"}, "display_value": "Local", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local (Marketing)", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "GLOBALLOCAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_AREA", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "3dc200c993ab8263952dc6da1498026f615f45dd"}, "metadata_element": {"id": "MARKETING_AREA", "name": "AREA", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E010"}, "display_value": "EUROPE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "AREA", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "AREA", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "AREA", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "dc7749c3e113ec9e0b9e9a3840ea55673ca5e49f"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "f2d658a3829c2ea158ae70a4b4e7928bcf88f8e2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "972d0258a82de85672bd84d8af68cdb67ad3d3ca"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "1212505ad3fe4c9d7458568f3d95aeb4c4e5c37e"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "9d1dfdef55ff7a3eb03552988ddf729c7a0f5107"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "54f006eeb366121a29ee98da33d437615dcd34e0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "1fd8802010e30d44cebb2f3eb090b12ac550f97d"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "be0dc9a87262ee7fd165237b531ba3b7aa93a260"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "2f99f0f0f9e43fb34df9222c8b73a86fb78e473e"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "container_name": "Nutella", "container_type_id": "GLOBALBRAND", "container_type_name": "L3 - BRAND", "inherited_metadata_values": [{"id": "FERRERO.TABULAR.NEW.BRAND", "tabular": true, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "9bb1c183135f5240f09132aef59c4ea48c762381"}, "metadata_element": {"id": "FERRERO.TABULAR.NEW.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF30"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND (Marketing)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF30"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "BRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TABULAR_BRAND", "column_name": "BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.NEW.BRAND", "parent_table_name": "BRAND (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "tabular": true, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "a37b13c02cba799378211e17b73234a0d836f9b6"}, "metadata_element": {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "JV"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND(HARMONIZED)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "JV"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.HARMONIZEDBRAND", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_HARMONIZEDBRAND", "column_name": "HARMONIZEDBRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.HARMONIZEDBRAND", "parent_table_name": "BRAND(HARMONIZED)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "AGENCY.COLLABORATION", "tabular": false, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "183d6e0957a9940f9b18ef44f46d957802b63397"}, "metadata_element": {"id": "AGENCY.COLLABORATION", "name": "Agency collaboration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency collaboration", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "AGENCY_COLLABORATION", "column_name": "AGENCY_COLLABORATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "AGENCY.SHARING", "tabular": false, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "d0e2b725ddfdc452cc3ba750bbe8ec059c6b01ba"}, "metadata_element": {"id": "AGENCY.SHARING", "name": "Agency sharing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency sharing", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "AGENCY_SHARING", "column_name": "AGENCY_SHARING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "CONTENT.SCALING.AGENCYNAME", "tabular": false, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "f9dfa695cc5ef8cd3fafada4e44cfdaa1522d58a"}, "metadata_element": {"id": "CONTENT.SCALING.AGENCYNAME", "name": "Content Scaling agency name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Scaling agency name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENTSCALING_AGENCYNAME", "column_name": "CONTENTSCALING_AGENCYNAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "container_name": "01. Nutella Core", "container_type_id": "GLOBALSUBCATEGORY", "container_type_name": "L2 - SUBCATEGORY", "inherited_metadata_values": [{"id": "MARKETING_SUBCATEGORY", "tabular": false, "value_id": {"uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "originator_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "inherited_field_id": "3000ad591e09b5c75f85fc2ccbb9ebeb31b3ab78"}, "metadata_element": {"id": "MARKETING_SUBCATEGORY", "name": "SUBCATEGORY", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Mart-Nutella-Core"}, "display_value": "Nutella Core", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "SUBCATEGORY", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "SUBCATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "SUBCATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "tabular": true, "value_id": {"uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "originator_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "inherited_field_id": "2c751ce760d88c0e271925ea5149348106944bfa"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Subcategory Owner", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_SUBCATEGORY_OWNER_TM", "column_name": "SUBCATEGORY_OWNER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "parent_table_name": "Subcategory Owner", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "container_name": "Nutella", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "originator_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E04"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "originator_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final Approver BPS ", "values": [{"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "container_name": "00. Master Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "originator_id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00. Master Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "847c0ede25c32edd97546221fe54fb392431848d", "container_name": "NUTELLA XMAS - PL ADAPTATION 3", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA XMAS - PL ADAPTATION 3"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000599"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA_XMAS_-_PL_A_JV_LA_PL_NUT_0000599"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CHRISTMAS"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local adaptation of global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000576"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2021/2022"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "A1"}, "display_value": "Local Campaign ready for localization", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.DEPARTMENTNAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "103a6545e38f07f6e989a86c6ee7e10339a71a14", "container_name": "05. Final Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "103a6545e38f07f6e989a86c6ee7e10339a71a14", "originator_id": "103a6545e38f07f6e989a86c6ee7e10339a71a14", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "05. Final Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "container_name": "NUTELLA - CHRISTMAS 26 E2E", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA - CHRISTMAS 26 E2E"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000576"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA_-_CHRISTMA_JV_GL_MLT_NUT_0000576"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "BE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "BE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "BG"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "EE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "LT"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "LU"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "LV"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "MD"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "NL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "RO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2025/2026"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "B2"}, "display_value": "Master campaign received from Agency", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.DEPARTMENTNAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "container_name": "Global", "container_type_id": "GEOGRAPHYGLOBAL", "container_type_name": "L4 - GEOGRAPHY GLOBAL", "inherited_metadata_values": [{"id": "FERRERO.MARKET.FOLDER.GLOBAL", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "963db123044a8d3ff5d8f4aac56d35df77a7656c"}, "metadata_element": {"id": "FERRERO.MARKET.FOLDER.GLOBAL", "name": "Global/Local (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "GLOBAL"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local (Marketing)", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "GLOBALLOCAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_AREA", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "3a37ace6a53a93799e0e18773ba6c7e70305cc78"}, "metadata_element": {"id": "MARKETING_AREA", "name": "AREA", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AREA", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "AREA", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "AREA", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "9f64f884b41d2a8445f4d9cd60714e91024e8b13"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Global Editable Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "8847a6dfbebcf323a8170649b390af1a375c08b8"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Nutella Global Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "758e614412f11ecb58446966d328974daf253446"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "53df9e81ae46cf6bd2440643426224b1fb904aeb"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "name": "Published Security Policy - Restricted Visibility", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Global Published Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Security Policy - Restricted Visibility", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_VISIBILITY_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "6b410cc3e966037a3e534da53137d32856cd6bdb"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "b5f185da6208925fe296e074dbdfdd74678ad076"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "b9e4bba5fa277862093047710c3fccb44a553f91"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "a70b94dccf12d05fbcf6a1881e4726759d8714a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "134e6810dec03aed0a70f68bf16cdd3a390f99de"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "2c412cc87805c4f03622e671cd7cdd65402b5598"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "0f4d4a35b08b4d2aac7ce7cc18999a8e5f523edf"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.GLOBAL APPROVER", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "43af18c983afd26a477317ac0b608495d9e0b3df"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.GLOBAL APPROVER", "name": "Global approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "GLOBAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "00dacbe20687d3c5d0be9b4fc2997c572e3c36bf"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "0fbcf70c95f5d28645e7a6187f7c429d62e60380"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Global comm"}, "display_value": "Global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Global comm"}, "display_value": "Global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "container_name": "Oliver Read Only", "container_type_id": "L3 - Agency Structure", "container_type_name": "L3 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "55530f721f18c847e35d7c828edf53461b5014b0"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "330bb6f68316aab5c45f9fe34e047cce573c67cc"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "name": "Agency Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "AGENCY_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "e30e90d694f9935d4c15c4c78891beed8853a272"}, "metadata_element": {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "name": "Published Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "PUBLISHED_ASSET_SP_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "23b155c32d5c6142914b41458234c100812bbec8", "container_name": "Oliver", "container_type_id": "L2 - Agency Structure", "container_type_name": "L2 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.AGENCY", "tabular": false, "value_id": {"uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "originator_id": "23b155c32d5c6142914b41458234c100812bbec8", "inherited_field_id": "48fcbc397986aca5bb8722a95197dd0a46f19b4e"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_AGENCY", "column_name": "AGENCY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "container_name": "Z - Exchange", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "YY"}, "display_value": "AGENCIES", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Final Approver BPS ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}], "asset_lock_state_last_update_date": "2025-11-07T13:03:36.743+01:00", "content_lock_state_last_update_date": "2025-11-07T13:00:15.03+01:00"}, "language_code": null, "language_name": null, "subject_title": null, "file_extension": ".mp4", "asset_type_name": null, "file_size_bytes": null, "duration_seconds": null, "upload_directory": "95c935af7e32719e82ee47bcae9cf772c01b51fa", "local_campaign_id": "C000000599", "original_filename": "Nutella4Global_e2e", "global_master_folder_id": "847c0ede25c32edd97546221fe54fb392431848d", "global_master_campaign_id": "C000000576"} 2025-11-21 03:23:42.104958 \N 9 iFLQFw master_asset_created {"id": 9, "tags": null, "status": "active", "width_px": null, "height_px": null, "mime_type": "image/jpeg", "asset_type": null, "brand_code": null, "brand_name": null, "categories": null, "created_at": "2025-11-21T03:26:29.696276", "deleted_at": null, "is_deleted": false, "updated_at": "2025-11-21T03:26:29.696276", "description": "Box File ID: 2052714302232\\nBox URL: https://app.box.com/file/2052714302232\\nDAM Asset ID: 63b10b8e46df50e279c15fc2e12ae39e3585b41a", "ingested_at": "2025-11-21T03:26:29.696276", "ingested_by": null, "opentext_id": "63b10b8e46df50e279c15fc2e12ae39e3585b41a", "tracking_id": "iFLQFw", "aspect_ratio": null, "country_code": null, "country_name": null, "full_metadata": {"name": "nutella pbased_beauty.jpg", "links": {"links": [], "source_id": "63b10b8e46df50e279c15fc2e12ae39e3585b41a"}, "locked": false, "deleted": false, "expired": false, "version": 1, "asset_id": "63b10b8e46df50e279c15fc2e12ae39e3585b41a", "metadata": {"id": "ECOMMERCE", "name": "Marketing Asset", "type": "com.artesia.metadata.MetadataModel", "legacy_id": 116, "metadata_element_list": [{"id": "FERRERO.CATEGORY.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200054, "metadata_element_list": [{"id": "FERRERO.FIELD.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Status", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.CONTENT_STATUS", "edit_type": "COMBO_NOTNULL", "facetable": false, "searchable": true, "table_name": "FERRERO_CONTENT_STATUS_MD", "column_name": "CONTENT_STATUS", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9215, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRER.CATEGORY.ASSET_INFO", "name": "Asset Info", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200022, "metadata_element_list": [{"id": "FERRERO.FIELD.MKTG.ASSET TYPE", "name": "Asset Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "aplus"}, "display_value": "E-COMM: A+", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.ASSETTYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.FISCAL YEAR", "name": "Release Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2025/2026"}, "display_value": "2025/2026", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Release Fiscal Year", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_DOMAIN_FISCAL_YEAR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "FISCAL__YEAR", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "name": "Main Languages", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1210, "metadata_element_list": [{"id": "MAIN_LANGUAGES", "name": "MAIN LANGUAGES", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "MAIN LANGUAGES", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MAIN LAGUAGES_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MAIN_LANGUAGE_TABLE", "column_name": "MAIN_LANGUAGE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "parent_table_name": "Main Languages", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.ASSET DESCRIPTION", "name": "Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Description", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "DESCR", "data_length": 249, "description": "Descriptive information", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.FLAVOUR", "name": "Flavour", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Flavour", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.FLAVOUR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FLAVOUR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.SIZE", "name": "Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Size", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.SIZE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SIZE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1241, "metadata_element_list": [{"id": "FERRERO.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Compliance", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ASSETCOMPLIANCE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_COMPLIANCE", "column_name": "ASSET_COMPLIANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "parent_table_name": "Asset Compliance", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.TAG DETAILS", "name": "Tag Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 118, "metadata_element_list": [{"id": "ARTESIA.FIELD.TAG", "name": "Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "food", "field_value": {"type": "string", "value": "food"}, "display_value": "food", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Tag", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "food", "field_value": {"type": "string", "value": "food"}, "display_value": "food", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "indoor", "field_value": {"type": "string", "value": "indoor"}, "display_value": "indoor", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "kitchen appliance", "field_value": {"type": "string", "value": "kitchen appliance"}, "display_value": "kitchen appliance", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "text", "field_value": {"type": "string", "value": "text"}, "display_value": "text", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "snack", "field_value": {"type": "string", "value": "snack"}, "display_value": "snack", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "bottle", "field_value": {"type": "string", "value": "bottle"}, "display_value": "bottle", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "fast food", "field_value": {"type": "string", "value": "fast food"}, "display_value": "fast food", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "kitchen", "field_value": {"type": "string", "value": "kitchen"}, "display_value": "kitchen", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.TAGS", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "OTMM_TAGS", "column_name": "TAG", "data_length": 80, "description": "Tag", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG CONFIDENCE", "name": "Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 96.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Confidence", "values": [{"value": {"type": "decimal", "value": 96.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 93.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 64.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 64.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 62.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 59.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 57.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 51.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Confidence", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG TYPE", "name": "Tag Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Tag Type", "values": [{"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "TAG_TYPE", "data_length": 10, "description": "Tag Type", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED BY", "name": "Associated By", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Associated By", "values": [{"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_BY", "data_length": 10, "description": "Associated By", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED DATE", "name": "Associated Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-11-11T14:39:08.933+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Associated Date", "values": [{"value": {"type": "dateTime", "value": "2025-11-11T14:39:08.933+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-11-11T14:39:08.933+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-11-11T14:39:08.933+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-11-11T14:39:08.933+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-11-11T14:39:08.933+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-11-11T14:39:08.933+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-11-11T14:39:08.937+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-11-11T14:39:08.937+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_DATE", "data_length": 10, "description": "Associated Date", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.STATE", "name": "Global/Local", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "GLOBAL"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO_NOTNULL", "facetable": true, "searchable": true, "table_name": "FERRERO_IC_ASSET_DETAILS", "column_name": "ASSET_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.ASPECT RATIO", "name": "Aspect Ratio (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio (Marketing)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASPECT_RATIO", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASPECT_RATIO", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "name": "Tag (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1222, "metadata_element_list": [{"id": "MARKETING_TAG", "name": "Marketing Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Marketing Tag", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.DOMAIN.TAG", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TAG_MARKET", "column_name": "TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "parent_table_name": "Tag (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.TAGS", "name": "Auto-Generated Tags", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Auto-Generated Tags", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "AUTO_GENERATED_TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CERTIFIER", "name": "Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approver", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.MARKETING.FIELD.APPROVAL DATE", "name": "Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.LEGAL APPROVAL DATE", "name": "Legal Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CERTIFIER", "name": "IA&CC Certifier", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Certifier", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CC APPROVAL DATE", "name": "IA&CC Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "name": "Extended Approval", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1230, "metadata_element_list": [{"id": "FERRERO.FIELD.EXTENDED.APPROVAL", "name": "Extended Approval required by:", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended Approval required by:", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COMMENTS", "name": "Comment", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comment", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "COMMENTS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.DATE", "name": "Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USERS", "name": "User ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "User ID", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "USERS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXTENDED.JOBID", "name": "Extended JobID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended JobID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.MIGRATION.INDEX", "name": "Migration Index", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Migration Index", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MIGRATION.INDEX", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MIGRATION_INDEX", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "FERRERO_MARKET_MARKETING_CREATOR", "name": "Marketing Creator", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Marketing Creator", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.CREATOR", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MARKETING_CREATOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "ARTESIA.FIELD.IS LATEST VERSION", "name": "Is Latest Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Y"}, "display_value": "Yes", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Is Latest Version", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.YES_NO", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "IS_LATEST_VERSION", "data_length": 1, "description": "Is this the latest version? (Y/N)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET VERSION", "name": "Asset Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 1}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Version", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "INTEGER", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "VERSION", "data_length": 12, "description": "Version number of asset", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET_ID", "name": "Asset ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "63b10b8e46df50e279c15fc2e12ae39e3585b41a"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset ID", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "LOGICAL_UOI_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.ECOMMERCE STATUS", "name": "Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "PUBLISHED"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Status", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "ASSET_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CREATOR", "name": "Uploaded by", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Uploaded by", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_USER_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.FIELD.CREATION DATE", "name": "Upload Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-11-11T14:38:55.16+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Upload Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_DT", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.ASSET NAME", "name": "Asset Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "nutella pbased_beauty.jpg"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Name", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "description": "Original name of master object", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.CONTENT TYPE", "name": "Content Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "BITMAP"}, "display_value": "Image", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Type", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.CONTENT_TYPES", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "CONTENT_TYPE", "data_length": 8, "description": "Content Type", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.MIME TYPE", "name": "File Extension", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "image/jpeg"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Extension", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_MIME_TYPE", "data_length": 80, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.FILE.SIZE", "name": "File Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "long", "value": 6538}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Size", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "LONG", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_SIZE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP RESOLUTION", "name": "Bitmap Resolution", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 72}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Resolution", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_RESOLUTION", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP WIDTH", "name": "Bitmap Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 300}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Width", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_WIDTH", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP HEIGHT", "name": "Bitmap Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 168}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Height", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_HEIGHT", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.VIDEO.BIT_RATE", "name": "Bitrate", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitrate", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "BIT_RATE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.EMBEDDED.FIELD.DURATION", "name": "Duration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Duration", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "DURATION_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.ASPECT RATIO", "name": "Aspect Ratio", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "ASPECT_RATIO", "data_length": 30, "displayable": false, "instructions": "ASPECT_RATIO", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME HEIGHT", "name": "Frame Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Height", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_HEIGHT", "data_length": 12, "displayable": true, "instructions": "FRAME_HEIGHT", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME WIDTH", "name": "Frame Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Width", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_WIDTH", "data_length": 12, "displayable": true, "instructions": "FRAME_WIDTH", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.ASPECT.RATIO.POC", "name": "Aspect Ratio(POC)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "16:9"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio(POC)", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASPECT_RATIO_TABLE", "column_name": "ASPECT_RATIO", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "PRODUCT.DETAILS", "name": "Product Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200029, "metadata_element_list": [{"id": "FERRERO.TABLE.EANCODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1208, "metadata_element_list": [{"id": "EAN_CODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "EAN CODE/ 77 CODE", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "EAN.CODE", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "EAN_CODE", "column_name": "EAN_CODE_DESCRIPTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "COUNTRY", "name": "COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "EAN_CODE", "column_name": "COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKETING.ADVANCE.PRODUCT.LINK", "name": "Asset-to-product relation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset-to-product relation", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_MARKETING_ADVANCE_PRODUCT_LINK", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ADVANCE_PRODUCT_LINK", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 10182, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.SUB BRAND", "name": "Sub-Brands", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Sub-Brands", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.SUBBRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "SUB_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT WEIGHT", "name": "Product Weight", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Weight", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_WEIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.CONSUMER UNIT PACKAGING", "name": "Consumer Unit Packaging", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Consumer Unit Packaging", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PACK", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "CONSUMER_UNIT_PACKAGING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.4 DIGIT CODE", "name": "4 Digit Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "4 Digit Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "DIGITCODE", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERREO.ECOM.RETAILER_SPECIFIC_FIELD", "name": "Retailer Specific", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Retailer Specific", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "RETAILER_SPECIFIC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "cascading_group_id": "FERRERO.RETAILER.SPECIFIC", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY START PERIOD", "name": "Asset validity start period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity start period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_STARTING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY END PERIOD", "name": "Asset validity end period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity end period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_ENDING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.ASSET.NAMING.CONVENTION", "name": "Does asset need GS1 naming convention", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Does asset need GS1 naming convention", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASSETNAMINGCONVENTION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_NAMING_CONVENTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9515, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT VIEW", "name": "Product View", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product View", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT VIEW", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_VIEW", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT ANGLE", "name": "Product Angle", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Angle", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT.ANGLE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_ANGLE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT STATE", "name": "Product State", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product State", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT STATE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PROMOTION ID", "name": "Promo ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Promo ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROMO_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.BUSINESS.ASSET TYPE", "name": "Asset Type (eDAM)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Type (eDAM)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "OTMM.DOMAIN.OTMM_ASSETTYPE_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_BUSINESS_INFO", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7244, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200048, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.AGENCY NAME", "name": "Agency Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Agency Name", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.AGENCY_NAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AGENCY_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7336, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.CREATIX", "name": "CreativeX", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200059, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.CREATIVEX", "name": "Confidence", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1245, "metadata_element_list": [{"id": "FERRERO.TAB.FIELD.CREATIVEX", "name": "Platform > Rating (%)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Platform > Rating (%)", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_CREATIVEX", "column_name": "CREATIVEX_NEW", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CREATIVEX", "parent_table_name": "Confidence", "cascading_group_id": "FERRERO.CREATIVEX.CHAR", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.CREATIVEX LINK", "name": "CreativeX Hyperlink", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "CreativeX Hyperlink", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_CREATIVEX", "column_name": "CREATIVE_LINK", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.IP_RIGHTS", "name": "IP Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200046, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.IPRIGHT", "name": "IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "IP Rights", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.IPRIGHTS", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IP_RIGHTS", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.BUYOUT", "name": "Touchpoint Scope", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Touchpoint Scope", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.TOTAL_BUYOUT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TOTAL_BUYOUT", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.FERRERO PROPERTY", "name": "Ferrero Property", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Ferrero Property", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.FERRERO_PROPERTY", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FERRERO_PROPERTY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200035, "metadata_element_list": [{"id": "FERRERO.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1209, "metadata_element_list": [{"id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "name": "IP Coverage, Area, Region & Market Unit", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Coverage, Area, Region & Market Unit", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "IPCOVERAGE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "cascading_group_id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHT TYPE", "name": "Copyright Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHT_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.MEDIATYPE", "name": "Media Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Media Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MEDIA_TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "MEDIA_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE FROM", "name": "Expiration of Usage - From", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - From", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_FROM", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE TO", "name": "Expiration of Usage - To", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - To", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_TO", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO._DURATION", "name": "IP Duration", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Duration", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "ECOM_DURATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHTTYPE DETAILS", "name": "Copyright Type Details", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type Details", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHTTYPE_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 6, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.MARKET.VID_STAT_RIGHT", "name": "Video & Static Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200047, "metadata_element_list": [{"id": "FERRERO.MARKET.VID_N_STAT", "name": "Video and Static Right", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Video and Static Right", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VID_AND_STAT_RIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.VID_STAT_TYPE", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1221, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.TYPE_VID", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Video & Static Right", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TYPE_VID_STAT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_MARKET_TYPE_VID_STAT", "column_name": "TYPE_OF_VIDEO_STATIC_RIGHT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.VID_STAT_TYPE", "parent_table_name": "Type of Video & Static Right", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKET.PROD_COMPANY", "name": "Production House", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Production House", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.PRODUCT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200050, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.LICENSIN", "name": "Licensing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Licensing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSING", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "cascading_group_id": "FERRERO.MARKET.CG.LICENSE", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.SPOT_DETAILS", "name": "Spot Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200049, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.SPOT_VERSION", "name": "Spot Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Version", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_VERSION", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_VERSION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.SPOT_TYPE", "name": "Spot Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_TYPE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.DIRECTOR_NAME", "name": "Director Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Director Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "DIRECTOR_NAME", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VIDEO_POST_PROD_COMPANY", "name": "Video Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VID_POST_PROD_CONTACT", "name": "Video Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_COMPANY", "name": "Audio Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_CONTACT", "name": "Audio Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.BROADCASTER.CODE", "name": "Broadcaster Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Broadcaster Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BROADCASTER_CODE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.TECHNICAL_VALIDATION", "name": "Technical Validation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Technical Validation", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TECHNICAL_VALIDATION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS", "name": "Media Analysis", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1002, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "name": "Categories", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 105, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY NAME", "name": "Category Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "abstract_"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Category Name", "values": [{"value": {"type": "string", "value": "abstract_"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "others_"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "NAME", "data_length": 100, "description": "Category Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY CONFIDENCE", "name": "Category Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 0.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Category Confidence", "values": [{"value": {"type": "decimal", "value": 0.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 0.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "CONFIDENCE", "data_length": 10, "description": "Category Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES COUNT", "name": "Faces Count", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Faces Count", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACECOUNT", "column_name": "COUNT", "data_length": 10, "description": "Faces Count", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "name": "Face Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 106, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME", "name": "Recognized Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME", "data_length": 2000, "description": "Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME CONFIDENCE", "name": "Recognized Name Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME_CONFIDENCE", "data_length": 10, "description": "Name Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE", "name": "Person Age", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE", "data_length": 10, "description": "Person Age", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE CONFIDENCE", "name": "Person Age Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Person Age Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_CONFIDENCE", "data_length": 10, "description": "Person Age Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER", "name": "Gender", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Gender", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.GENDER", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER", "data_length": 40, "description": "Gender", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER CONFIDENCE", "name": "Gender Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Gender Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER_CONFIDENCE", "data_length": 10, "description": "Gender Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.FACE COORDS", "name": "Face Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "FACE_COORDS", "data_length": 200, "description": "Face Coordinates like postion, height,width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE GROUP", "name": "Person Age Group", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age Group", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.AGE GROUP", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_GROUP", "data_length": 10, "description": "Person Age Group", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "name": "Safe Content", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 107, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONTENT TYPE", "name": "Safe Content Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Safe Content Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENTS", "data_length": 20, "description": "Safe Content Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONFIDENCE", "name": "Content Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Content Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENT_CONFIDENCE", "data_length": 10, "description": "Safe Content Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "name": "Colors", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 108, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.NAME", "name": "Color", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Grey"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Color", "values": [{"value": {"type": "string", "value": "Grey"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "White"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "NAME", "data_length": 25, "description": "COLOR", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.PROPORTION", "name": "Color Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Color Confidence", "values": [{"is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "PROPORTION", "data_length": 10, "description": "Proportion", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.FOREGROUND", "name": "Foreground Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Grey"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Foreground Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "FOREGROUND", "data_length": 25, "description": "Foreground Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.BACKGROUND", "name": "Background Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "White"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Background Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "BACKGROUND", "data_length": 25, "description": "Background Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.ISBW", "name": "Is Black and White", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "false"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Is Black and White", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "ISBW", "data_length": 10, "description": "Is Black and White", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "name": "Captions", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 109, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION TEXT", "name": "Caption Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "food on a table"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Caption Text", "values": [{"value": {"type": "string", "value": "food on a table"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "TEXT", "data_length": 2000, "description": "Caption Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION CONFIDENCE", "name": "Caption Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 49.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Caption Confidence", "values": [{"value": {"type": "decimal", "value": 49.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "CAPTION_CONFIDENCE", "data_length": 10, "description": "Caption Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "name": "Image Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 110, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.IMAGE TYPE", "name": "Analysis Image Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Analysis Image Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_IMAGE_TYPE", "column_name": "TYPE", "data_length": 100, "description": "Image Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "parent_table_name": "Image Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.DATE", "name": "Date: Media Analysis", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-11-11T14:39:09+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date: Media Analysis", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MEDIA_ANALYSIS_DATE", "data_length": 25, "description": "Date Media Analysis was done on the asset.", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR LANGUAGE", "name": "Image Text Language", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "unk"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Image Text Language", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "LANGUAGE", "data_length": 10, "description": "OCR data language", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR TEXT", "name": "Text on Image", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Text on Image", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "TEXT", "data_length": 4000, "description": "OCR Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "name": "Embedded Brand Info", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 119, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.NAME", "name": "Embedded Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Embedded Brand Name", "values": [{"value": {"type": "string", "value": "Nutella"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Embedded Brand Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.CONFIDENCE", "name": "Embedded Brand Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 82.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Embedded Brand Confidence", "values": [{"value": {"type": "decimal", "value": 82.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Embedded Brand Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.COORDINATES", "name": "Embedded Brand Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "\\"top\\":0.6607142857142857,\\"left\\":0.41333333333333333,\\"width\\":0.18333333333333332,\\"height\\":0.09523809523809523"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Embedded Brand Coordinates", "values": [{"value": {"type": "string", "value": "\\"top\\":0.6607142857142857,\\"left\\":0.41333333333333333,\\"width\\":0.18333333333333332,\\"height\\":0.09523809523809523"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "COORDINATES", "data_length": 200, "description": "Embedded Brand Coordinates like position, height, width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "HYBRIS.PRODUCT.INFO", "name": "PIM Item Reference", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200027, "metadata_element_list": [{"id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "name": "Hybris Item Reference", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1206, "metadata_element_list": [{"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ID", "name": "Hybris Item ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ID", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT TAG NAME", "name": "Hybris Assignment Label", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Assignment Label", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_TAG_NAME", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ATTRIBUTE NAME", "name": "Hybris Attribute Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Attribute Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ATTRIBUTE_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT CATALOG NAME", "name": "Hybris Catalog Mnemonic", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Catalog Mnemonic", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_CATALOG_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT PK", "name": "Hybris Item PK", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item PK", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_PK", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.SYSTEM ID", "name": "Hybris System ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris System ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "SYSTEM_ID", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.ASSIGNED", "name": "Assigned", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Assigned", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "ASSIGNED", "column_name": "ASSIGNED", "data_length": 38, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PIM TYPE", "name": "PIM Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "PIM Type", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_PIM_TYPE", "column_name": "PIM_TYPE", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS VIDEO", "name": "Media Analysis Video", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1003, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "name": "Labels", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 113, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.ID", "name": "Label Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "ID", "data_length": 40, "description": "Label Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.NAME", "name": "Label Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "NAME", "data_length": 40, "description": "Label Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.APPEARANCES", "name": "Label Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "APPEARANCES", "data_length": 0, "description": "Label Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "name": "Sentiments", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 114, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.ID", "name": "Sentiment Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "ID", "data_length": 40, "description": "Sentiment Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.NAME", "name": "Sentiment Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "NAME", "data_length": 40, "description": "Sentiment Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.APPEARANCES", "name": "Sentiment Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "APPEARANCES", "data_length": 0, "description": "Sentiment Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.SEEN.DURATION.RATIO", "name": "Sentiment Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Sentiment Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "name": "Keywords", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 115, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.ID", "name": "Keyword Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "ID", "data_length": 40, "description": "Keyword Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.NAME", "name": "Keyword Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "NAME", "data_length": 40, "description": "Keyword Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.APPEARANCES", "name": "Keyword Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Keyword Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "name": "Faces", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 111, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.ID", "name": "Face Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "ID", "data_length": 40, "description": "Face Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.NAME", "name": "Face Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "NAME", "data_length": 40, "description": "Face Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.TITLE", "name": "Face Title", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Title", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "TITLE", "data_length": 249, "description": "Face Title", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.DESCRIPTION", "name": "Face Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Face Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.APPEARANCES", "name": "Face Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "APPEARANCES", "data_length": 0, "description": "Face Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SPEAKER.FACE.ID", "name": "Video Speaker Object Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Speaker Object Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "THUMBNAIL_OBJECT_ID", "data_length": 40, "description": "Video Speaker Object Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.SEEN.DURATION.RATIO", "name": "Face Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "SEEN_DURATION_RATIO", "data_length": 20, "description": "Face Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "name": "Brands", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 112, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.ID", "name": "Video Brand Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "ID", "data_length": 40, "description": "Brand Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.NAME", "name": "Video Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Brand Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.DESCRIPTION", "name": "Video Brand Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Brand Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.WIKIURL", "name": "Video Brand Wiki URL", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Wiki URL", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "WIKIURL", "data_length": 200, "description": "Brand Wiki URL", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.APPEARANCES", "name": "Video Brand Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Brand Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.SEEN.DURATION.RATIO", "name": "Video Brand Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Brand Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "name": "Speeches", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 116, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.ID", "name": "SpeechText Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "SpeechText Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "ID", "data_length": 40, "description": "SpeechText Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXT", "name": "Speech Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Text", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXT", "data_length": 1000, "description": "Speech Text", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXTTYPE", "name": "Speech Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXTTYPE", "data_length": 40, "description": "Speech Type", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.START TIME", "name": "Speech Start Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Start Time", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "START_TIME", "data_length": 40, "description": "Speech Start Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.END TIME", "name": "Speech End Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech End Time", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "END_TIME", "data_length": 40, "description": "Speech End Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "name": "Speakers", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 122, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.ID", "name": "Speaker Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "ID", "data_length": 40, "description": "Speaker Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.NAME", "name": "Speaker Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "NAME", "data_length": 100, "description": "Speaker Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.APPEARANCES", "name": "Speaker Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "APPEARANCES", "data_length": 0, "description": "Speaker Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.FIELDGROUP.LOCALASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200057, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1239, "metadata_element_list": [{"id": "FERRERO.FIELD.COUNTRY", "name": "LOCAL COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "LOCAL COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USER", "name": "USER", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "USER", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_USER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.ASSOCIATION", "name": "TYPE OF ASSOCIATION", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "TYPE OF ASSOCIATION", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_ASSOCIATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.VALUE", "name": "VALUE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "VALUE", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_VALUE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}], "has_multilingual_fields": false}, "mime_type": "image/jpeg", "path_list": [{"parents": [{"id": "46244570083694cb1a7a0deaad7abc87800c39d1", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "46244570083694cb1a7a0deaad7abc87800c39d1", "sequence_number": 0}, {"id": "5f47100767fd6517861b6ee337ea83697edfa66a", "name": "CONTENT SCALING 12345", "container_state": "NORMAL", "original_uoi_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "sequence_number": 0}, {"id": "7a2be540205cbf69067d7f45d6fcf2ccdb09ea50", "name": "02.Campaigns", "container_state": "NORMAL", "original_uoi_id": "7a2be540205cbf69067d7f45d6fcf2ccdb09ea50", "sequence_number": 0}, {"id": "a0c1ace9b1a779f115d94d044718d9c255c5f154", "name": "01.Standard", "container_state": "NORMAL", "original_uoi_id": "a0c1ace9b1a779f115d94d044718d9c255c5f154", "sequence_number": 0}, {"id": "e0683b3c0bd99442ce0240ff4bd15eb34c8e1be0", "name": "01.Romania", "container_state": "NORMAL", "original_uoi_id": "e0683b3c0bd99442ce0240ff4bd15eb34c8e1be0", "sequence_number": 0}, {"id": "154c946e28d7ba2bb35fe8ce1360eeda3baba4b6", "name": "RO", "container_state": "NORMAL", "original_uoi_id": "154c946e28d7ba2bb35fe8ce1360eeda3baba4b6", "sequence_number": 0}, {"id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "name": "01. MC - Nutella", "container_state": "NORMAL", "original_uoi_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "sequence_number": 0}, {"id": "5353bb35177d792b073acc634e010df2908fde32", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "eb8dd489a64518ea4a6b62a7fbb6f28940f968ae", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "eb8dd489a64518ea4a6b62a7fbb6f28940f968ae", "sequence_number": 0}, {"id": "f59d4d433cb55db39058836dd4c145062b8730a3", "name": "CONTENT SCALING XX", "container_state": "NORMAL", "original_uoi_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "sequence_number": 0}, {"id": "20c88462ba3557e7aae759665cbe331f693d398a", "name": "02. Campaigns", "container_state": "NORMAL", "original_uoi_id": "20c88462ba3557e7aae759665cbe331f693d398a", "sequence_number": 0}, {"id": "1638869b9b347c39842effc7e5ff965de47e8e65", "name": "01.Standard", "container_state": "NORMAL", "original_uoi_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "sequence_number": 0}, {"id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "name": "01.Poland", "container_state": "NORMAL", "original_uoi_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "sequence_number": 0}, {"id": "341bbf240ea033435cc225cd1add5c009bc067d7", "name": "PL", "container_state": "NORMAL", "original_uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "sequence_number": 0}, {"id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "name": "01. PL - Nutella", "container_state": "NORMAL", "original_uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "sequence_number": 0}, {"id": "5353bb35177d792b073acc634e010df2908fde32", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 1, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "89d439933e1492d05536b41d85e8f8c33038a09b", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "89d439933e1492d05536b41d85e8f8c33038a09b", "sequence_number": 0}, {"id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "name": "NUTELLA PLANT-BASED LAUNCH", "container_state": "NORMAL", "original_uoi_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "sequence_number": 0}, {"id": "413c776f4416163b88737d53bb72dfe23bfd2430", "name": "Global", "container_state": "NORMAL", "original_uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "46244570083694cb1a7a0deaad7abc87800c39d1", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "46244570083694cb1a7a0deaad7abc87800c39d1", "sequence_number": 0}, {"id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "name": "Oliver Read Only", "container_state": "NORMAL", "original_uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "sequence_number": 0}, {"id": "23b155c32d5c6142914b41458234c100812bbec8", "name": "Oliver", "container_state": "NORMAL", "original_uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "sequence_number": 0}, {"id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "name": "Z - Exchange", "container_state": "NORMAL", "original_uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "eb8dd489a64518ea4a6b62a7fbb6f28940f968ae", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "eb8dd489a64518ea4a6b62a7fbb6f28940f968ae", "sequence_number": 0}, {"id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "name": "Oliver Read Only", "container_state": "NORMAL", "original_uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "sequence_number": 0}, {"id": "23b155c32d5c6142914b41458234c100812bbec8", "name": "Oliver", "container_state": "NORMAL", "original_uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "sequence_number": 0}, {"id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "name": "Z - Exchange", "container_state": "NORMAL", "original_uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "sequence_number": 0}], "complete": true, "sequence_number": 1, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}], "creator_id": "1003", "asset_state": "NORMAL", "checked_out": false, "folder_path": "", "content_size": 6538, "content_type": "BITMAP", "content_state": "NORMAL", "date_imported": "2025-11-11T14:38:55.16+01:00", "import_job_id": 216793, "subscribed_to": false, "collection_ids": [], "latest_version": true, "legacy_model_id": 116, "content_editable": true, "import_user_name": "bizAdmin", "date_last_updated": "2025-11-11T14:39:50.187+01:00", "metadata_model_id": "ECOMMERCE", "original_asset_id": "63b10b8e46df50e279c15fc2e12ae39e3585b41a", "rendition_content": {"preview_content": {"id": "c81d52be994a6c682b7fd1d0d2f5cea404606c61", "url": "/otmmapi/v6/renditions/c81d52be994a6c682b7fd1d0d2f5cea404606c61", "name": "nutella pbased_beauty-S.png", "width": 300, "height": 168, "mime_type": "image/png", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "PREVIEW", "content_path": "data\\\\repository\\\\screen\\\\vol0\\\\184\\\\nutella pbased_beauty-S_c81d52be994a6c682b7fd1d0d2f5cea404606c61.png", "content_size": 62296, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "thumbnail_content": {"id": "054e0f90a3787a59c59d0b4879e186f748292c64", "url": "/otmmapi/v6/renditions/054e0f90a3787a59c59d0b4879e186f748292c64", "name": "nutella pbased_beauty-T.png", "width": 300, "height": 168, "mime_type": "image/png", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "THUMBNAIL", "content_path": "data\\\\repository\\\\thumb\\\\vol0\\\\198\\\\nutella pbased_beauty-T_054e0f90a3787a59c59d0b4879e186f748292c64.png", "content_size": 62296, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_content_info": {"master_content": {"id": "8f7d170780bfe49fc349fb1737902fac1b5ec569", "url": "/otmmapi/v6/renditions/8f7d170780bfe49fc349fb1737902fac1b5ec569", "name": "nutella pbased_beauty.jpg", "width": 300, "height": 168, "mime_type": "image/jpeg", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\224\\\\nutella pbased_beauty_8f7d170780bfe49fc349fb1737902fac1b5ec569.jpg", "content_size": 6538, "unit_of_size": "BYTES", "content_checksum": "ec5144fe641216b55573e5c76c0367cf", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_state_user_id": "1003", "master_content_info": {"id": "8f7d170780bfe49fc349fb1737902fac1b5ec569", "url": "/otmmapi/v6/renditions/8f7d170780bfe49fc349fb1737902fac1b5ec569", "name": "nutella pbased_beauty.jpg", "width": 300, "height": 168, "mime_type": "image/jpeg", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\224\\\\nutella pbased_beauty_8f7d170780bfe49fc349fb1737902fac1b5ec569.jpg", "content_size": 6538, "unit_of_size": "BYTES", "content_checksum": "ec5144fe641216b55573e5c76c0367cf", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "delivery_service_url": "https://ppr.dam.ferrero.com/adaptivemedia/rendition?id=63b10b8e46df50e279c15fc2e12ae39e3585b41a", "product_associations": false, "security_policy_list": [{"id": 5467, "name": "Marketing Viewer", "status": "NORMAL", "created_by": "1003", "create_date": "2023-10-06T16:52:07.297+02:00", "description": "Marketing Viewer", "ownership_type": "PUBLIC"}, {"id": 11385, "name": "Oliver Viewer", "status": "NORMAL", "created_by": "1003", "create_date": "2025-11-03T11:07:04.697+01:00", "description": "Oliver Viewer", "ownership_type": "PUBLIC"}], "thumbnail_content_id": "054e0f90a3787a59c59d0b4879e186f748292c64", "content_state_user_id": "1003", "content_state_user_name": "OTMM BusinessAdmin", "asset_lock_state_user_id": "1001", "metadata_state_user_name": "OTMM BusinessAdmin", "access_control_descriptor": {"permissions_map": {"entry": [{"key": "text.securityPolicy.permission.Custom04Permission", "value": true}, {"key": "text.securityPolicy.permission.ContentEditPermission", "value": true}, {"key": "text.securityPolicy.permission.AssetViewPermission", "value": true}, {"key": "text.securityPolicy.permission.ProjectViewPermission", "value": true}, {"key": "text.securityPolicy.permission.MembershipEditPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom03Permission", "value": true}, {"key": "text.securityPolicy.permission.MetaDataEditPermission", "value": true}, {"key": "text.securityPolicy.permission.EditParentsPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom02Permission", "value": true}, {"key": "text.securityPolicy.permission.ExportPermission", "value": true}, {"key": "text.securityPolicy.permission.SummaryViewPermission", "value": true}, {"key": "text.securityPolicy.permission.PreviewViewPermission", "value": true}, {"key": "text.securityPolicy.permission.SubscribePermission", "value": true}, {"key": "text.securityPolicy.permission.DeleteAssetPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom01Permission", "value": true}]}}, "content_lock_state_user_id": "1003", "asset_state_last_update_date": "2025-11-11T14:39:50.187+01:00", "content_lock_state_user_name": "bizAdmin", "metadata_lock_state_user_name": "tsuper", "content_state_last_update_date": "2025-11-11T14:38:55.317+01:00", "inherited_metadata_collections": [{"container_id": "46244570083694cb1a7a0deaad7abc87800c39d1", "container_name": "00. Master Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "46244570083694cb1a7a0deaad7abc87800c39d1", "originator_id": "46244570083694cb1a7a0deaad7abc87800c39d1", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00. Master Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "container_name": "CONTENT SCALING 12345", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "originator_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CONTENT SCALING 12345"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "originator_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000565"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "originator_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CONTENT_SCALING_12_JV_LA_MLT_NUT_0000565"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "originator_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "originator_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "originator_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "originator_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local adaptation of global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "originator_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "originator_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "originator_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "BG"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "BG"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "MD"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "RO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "originator_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2024/2025"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "originator_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2735"}, "display_value": "RO, Asset Owner (assetownerro, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2735"}, "display_value": "RO, Asset Owner (assetownerro, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "originator_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2735"}, "display_value": "RO, Asset Owner (assetownerro, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2735"}, "display_value": "RO, Asset Owner (assetownerro, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "originator_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "A1"}, "display_value": "Local Campaign ready for localization", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "originator_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.DEPARTMENTNAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "7a2be540205cbf69067d7f45d6fcf2ccdb09ea50", "container_name": "02.Campaigns", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "7a2be540205cbf69067d7f45d6fcf2ccdb09ea50", "originator_id": "7a2be540205cbf69067d7f45d6fcf2ccdb09ea50", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "02.Campaigns"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "a0c1ace9b1a779f115d94d044718d9c255c5f154", "container_name": "01.Standard", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "a0c1ace9b1a779f115d94d044718d9c255c5f154", "originator_id": "a0c1ace9b1a779f115d94d044718d9c255c5f154", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "01.Standard"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "e0683b3c0bd99442ce0240ff4bd15eb34c8e1be0", "container_name": "01.Romania", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "e0683b3c0bd99442ce0240ff4bd15eb34c8e1be0", "originator_id": "e0683b3c0bd99442ce0240ff4bd15eb34c8e1be0", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "01.Romania"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "154c946e28d7ba2bb35fe8ce1360eeda3baba4b6", "container_name": "RO", "container_type_id": "GLOBALMARKETUNIT", "container_type_name": "L6 - MARKET UNIT", "inherited_metadata_values": [{"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "154c946e28d7ba2bb35fe8ce1360eeda3baba4b6", "originator_id": "154c946e28d7ba2bb35fe8ce1360eeda3baba4b6", "inherited_field_id": "b94dd71b732e3c1df6ae63216c53d4d4b0e7f002"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E58"}, "display_value": "ROMANIA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "154c946e28d7ba2bb35fe8ce1360eeda3baba4b6", "originator_id": "154c946e28d7ba2bb35fe8ce1360eeda3baba4b6", "inherited_field_id": "13063087b81ea172db42e69ed8e8fa013cd5bfe0"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Local RO Editable Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "154c946e28d7ba2bb35fe8ce1360eeda3baba4b6", "originator_id": "154c946e28d7ba2bb35fe8ce1360eeda3baba4b6", "inherited_field_id": "bf49ba2a40d0d0dccee4d5de7381659b106dd89a"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Nutella Local RO Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "154c946e28d7ba2bb35fe8ce1360eeda3baba4b6", "originator_id": "154c946e28d7ba2bb35fe8ce1360eeda3baba4b6", "inherited_field_id": "3c0070e420882e3e18f6097811cb60a67239003b"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local RO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "154c946e28d7ba2bb35fe8ce1360eeda3baba4b6", "originator_id": "154c946e28d7ba2bb35fe8ce1360eeda3baba4b6", "inherited_field_id": "7f3c1933b61e900457ea6e2aab750303882873d4"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "154c946e28d7ba2bb35fe8ce1360eeda3baba4b6", "originator_id": "154c946e28d7ba2bb35fe8ce1360eeda3baba4b6", "inherited_field_id": "b0c960759e48c0fcdcb650417179a614da95e866"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Local RO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "154c946e28d7ba2bb35fe8ce1360eeda3baba4b6", "originator_id": "154c946e28d7ba2bb35fe8ce1360eeda3baba4b6", "inherited_field_id": "6f603fcc63415e266dc35cf2314d31357a2966bf"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "154c946e28d7ba2bb35fe8ce1360eeda3baba4b6", "originator_id": "154c946e28d7ba2bb35fe8ce1360eeda3baba4b6", "inherited_field_id": "495fa4f08769a021cfa907dfb7a903fade9bd19a"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "154c946e28d7ba2bb35fe8ce1360eeda3baba4b6", "originator_id": "154c946e28d7ba2bb35fe8ce1360eeda3baba4b6", "inherited_field_id": "e3b647e172a89e1e7cbdd2964faff1bca8dcf520"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "154c946e28d7ba2bb35fe8ce1360eeda3baba4b6", "originator_id": "154c946e28d7ba2bb35fe8ce1360eeda3baba4b6", "inherited_field_id": "6870cca056b54cd400a9fbd4fe75513e69cedcdd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "container_name": "01. MC - Nutella", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "originator_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "inherited_field_id": "5efe2981e6f9afca7ed3fc91a171f02162ef23e3"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E023"}, "display_value": "MULTI COUNTRY EUROPE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "originator_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "originator_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "originator_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "originator_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "inherited_field_id": "0de507c8b9d1f5942b6376b6c2a2b3ec1097e42e"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "originator_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "inherited_field_id": "ca70a6d55e4277ecbef2a01a593c614501cbcf74"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "originator_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "inherited_field_id": "3e9d669ab1047383d0416ba40af75744148c94c8"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "originator_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "inherited_field_id": "0e241fc386dcd91baa31a409e297169fe4a352c2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "originator_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "inherited_field_id": "2e3e0f2be0e487b540d9b63cb8c0e9ed9c6b1bb6"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "originator_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "inherited_field_id": "359c98154f230a60acc6b4eb048e129411d7a778"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "originator_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "inherited_field_id": "e92f9f10c0c29dda8261218c2c72a0baa66472f2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "originator_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "inherited_field_id": "15dff42c3b196ba3ae5b3c2ea33f00e347e6f654"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "tabular": false, "value_id": {"uoi_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "originator_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "inherited_field_id": "0ae044cd9dddf86cd9406c9edc3996b18c430be0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "name": "AMMC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AMMC", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LOCAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "originator_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "inherited_field_id": "7806fed6127b50c21f6b03e1f7b63f3dedc1e8d1"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "tabular": false, "value_id": {"uoi_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "originator_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "inherited_field_id": "4c8a2d6e178638bfacfeaf3f7f6f1000304693a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "name": "Product Asset Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Asset Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCT_ASSET_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "originator_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "5353bb35177d792b073acc634e010df2908fde32", "container_name": "EU", "container_type_id": "GEOGRAPHYLOCAL", "container_type_name": "L4 - GEOGRAPHY LOCAL", "inherited_metadata_values": [{"id": "FERRERO.MARKET.FOLDER.GLOBAL", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "4c4d4bf36bf8b1ace55f990e78d6332a9cb20990"}, "metadata_element": {"id": "FERRERO.MARKET.FOLDER.GLOBAL", "name": "Global/Local (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "LOCAL"}, "display_value": "Local", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local (Marketing)", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "GLOBALLOCAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_AREA", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "3dc200c993ab8263952dc6da1498026f615f45dd"}, "metadata_element": {"id": "MARKETING_AREA", "name": "AREA", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E010"}, "display_value": "EUROPE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "AREA", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "AREA", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "AREA", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "dc7749c3e113ec9e0b9e9a3840ea55673ca5e49f"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "f2d658a3829c2ea158ae70a4b4e7928bcf88f8e2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "972d0258a82de85672bd84d8af68cdb67ad3d3ca"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "1212505ad3fe4c9d7458568f3d95aeb4c4e5c37e"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "9d1dfdef55ff7a3eb03552988ddf729c7a0f5107"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "54f006eeb366121a29ee98da33d437615dcd34e0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "1fd8802010e30d44cebb2f3eb090b12ac550f97d"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "be0dc9a87262ee7fd165237b531ba3b7aa93a260"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "2f99f0f0f9e43fb34df9222c8b73a86fb78e473e"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "container_name": "Nutella", "container_type_id": "GLOBALBRAND", "container_type_name": "L3 - BRAND", "inherited_metadata_values": [{"id": "FERRERO.TABULAR.NEW.BRAND", "tabular": true, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "9bb1c183135f5240f09132aef59c4ea48c762381"}, "metadata_element": {"id": "FERRERO.TABULAR.NEW.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF30"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND (Marketing)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF30"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "BRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TABULAR_BRAND", "column_name": "BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.NEW.BRAND", "parent_table_name": "BRAND (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "tabular": true, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "a37b13c02cba799378211e17b73234a0d836f9b6"}, "metadata_element": {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "JV"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND(HARMONIZED)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "JV"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.HARMONIZEDBRAND", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_HARMONIZEDBRAND", "column_name": "HARMONIZEDBRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.HARMONIZEDBRAND", "parent_table_name": "BRAND(HARMONIZED)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "AGENCY.COLLABORATION", "tabular": false, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "183d6e0957a9940f9b18ef44f46d957802b63397"}, "metadata_element": {"id": "AGENCY.COLLABORATION", "name": "Agency collaboration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency collaboration", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "AGENCY_COLLABORATION", "column_name": "AGENCY_COLLABORATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "AGENCY.SHARING", "tabular": false, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "d0e2b725ddfdc452cc3ba750bbe8ec059c6b01ba"}, "metadata_element": {"id": "AGENCY.SHARING", "name": "Agency sharing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency sharing", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "AGENCY_SHARING", "column_name": "AGENCY_SHARING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "CONTENT.SCALING.AGENCYNAME", "tabular": false, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "f9dfa695cc5ef8cd3fafada4e44cfdaa1522d58a"}, "metadata_element": {"id": "CONTENT.SCALING.AGENCYNAME", "name": "Content Scaling agency name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Scaling agency name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENTSCALING_AGENCYNAME", "column_name": "CONTENTSCALING_AGENCYNAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "container_name": "01. Nutella Core", "container_type_id": "GLOBALSUBCATEGORY", "container_type_name": "L2 - SUBCATEGORY", "inherited_metadata_values": [{"id": "MARKETING_SUBCATEGORY", "tabular": false, "value_id": {"uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "originator_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "inherited_field_id": "3000ad591e09b5c75f85fc2ccbb9ebeb31b3ab78"}, "metadata_element": {"id": "MARKETING_SUBCATEGORY", "name": "SUBCATEGORY", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Mart-Nutella-Core"}, "display_value": "Nutella Core", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "SUBCATEGORY", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "SUBCATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "SUBCATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "tabular": true, "value_id": {"uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "originator_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "inherited_field_id": "2c751ce760d88c0e271925ea5149348106944bfa"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Subcategory Owner", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_SUBCATEGORY_OWNER_TM", "column_name": "SUBCATEGORY_OWNER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "parent_table_name": "Subcategory Owner", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "container_name": "Nutella", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "originator_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E04"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "originator_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final Approver BPS ", "values": [{"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "eb8dd489a64518ea4a6b62a7fbb6f28940f968ae", "container_name": "00. Master Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "eb8dd489a64518ea4a6b62a7fbb6f28940f968ae", "originator_id": "eb8dd489a64518ea4a6b62a7fbb6f28940f968ae", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00. Master Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "container_name": "CONTENT SCALING XX", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "originator_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CONTENT SCALING XX"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "originator_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000566"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "originator_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CONTENT_SCALING_XX_JV_LA_MLT_NUT_0000566"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "originator_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "originator_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "originator_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "originator_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local adaptation of global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "originator_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000138"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "originator_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "originator_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "BE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "BE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "LU"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "NL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "originator_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2024/2025"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "originator_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "originator_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "originator_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "A4"}, "display_value": "Localization completed", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "originator_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.DEPARTMENTNAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "20c88462ba3557e7aae759665cbe331f693d398a", "container_name": "02. Campaigns", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "20c88462ba3557e7aae759665cbe331f693d398a", "originator_id": "20c88462ba3557e7aae759665cbe331f693d398a", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "02. Campaigns"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "container_name": "01.Standard", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "originator_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "01.Standard"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "container_name": "01.Poland", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "originator_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "01.Poland"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "container_name": "PL", "container_type_id": "GLOBALMARKETUNIT", "container_type_name": "L6 - MARKET UNIT", "inherited_metadata_values": [{"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "b94dd71b732e3c1df6ae63216c53d4d4b0e7f002"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E39"}, "display_value": "POLAND", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "13063087b81ea172db42e69ed8e8fa013cd5bfe0"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Local PL Editable Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "bf49ba2a40d0d0dccee4d5de7381659b106dd89a"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Nutella Local PL Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "3c0070e420882e3e18f6097811cb60a67239003b"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "7f3c1933b61e900457ea6e2aab750303882873d4"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "b0c960759e48c0fcdcb650417179a614da95e866"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Local PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "6f603fcc63415e266dc35cf2314d31357a2966bf"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "495fa4f08769a021cfa907dfb7a903fade9bd19a"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "e3b647e172a89e1e7cbdd2964faff1bca8dcf520"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "6870cca056b54cd400a9fbd4fe75513e69cedcdd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "container_name": "01. PL - Nutella", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "5efe2981e6f9afca7ed3fc91a171f02162ef23e3"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E008"}, "display_value": "POLAND", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Local PL Editable Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0de507c8b9d1f5942b6376b6c2a2b3ec1097e42e"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E39"}, "display_value": "POLAND", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "ca70a6d55e4277ecbef2a01a593c614501cbcf74"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "3e9d669ab1047383d0416ba40af75744148c94c8"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0e241fc386dcd91baa31a409e297169fe4a352c2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "2e3e0f2be0e487b540d9b63cb8c0e9ed9c6b1bb6"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "359c98154f230a60acc6b4eb048e129411d7a778"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "e92f9f10c0c29dda8261218c2c72a0baa66472f2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "15dff42c3b196ba3ae5b3c2ea33f00e347e6f654"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0ae044cd9dddf86cd9406c9edc3996b18c430be0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "name": "AMMC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AMMC", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LOCAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "7806fed6127b50c21f6b03e1f7b63f3dedc1e8d1"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "4c8a2d6e178638bfacfeaf3f7f6f1000304693a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "name": "Product Asset Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Asset Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCT_ASSET_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "89d439933e1492d05536b41d85e8f8c33038a09b", "container_name": "05. Final Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "89d439933e1492d05536b41d85e8f8c33038a09b", "originator_id": "89d439933e1492d05536b41d85e8f8c33038a09b", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "05. Final Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "container_name": "NUTELLA PLANT-BASED LAUNCH", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "originator_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA PLANT-BASED LAUNCH"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "originator_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000068"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "originator_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "GL_FY25_NUT_30_NUTELLA_PLANT_00068"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "originator_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "originator_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "originator_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "originator_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "originator_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "originator_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Harmonized Brand", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "originator_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Market", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "originator_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Global comm024/2025"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "originator_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "originator_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "originator_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "B1"}, "display_value": "Master campaign ready for re-mastering", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "originator_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.DEPARTMENTNAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "container_name": "Global", "container_type_id": "GEOGRAPHYGLOBAL", "container_type_name": "L4 - GEOGRAPHY GLOBAL", "inherited_metadata_values": [{"id": "FERRERO.MARKET.FOLDER.GLOBAL", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "963db123044a8d3ff5d8f4aac56d35df77a7656c"}, "metadata_element": {"id": "FERRERO.MARKET.FOLDER.GLOBAL", "name": "Global/Local (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "GLOBAL"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local (Marketing)", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "GLOBALLOCAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_AREA", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "3a37ace6a53a93799e0e18773ba6c7e70305cc78"}, "metadata_element": {"id": "MARKETING_AREA", "name": "AREA", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AREA", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "AREA", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "AREA", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "9f64f884b41d2a8445f4d9cd60714e91024e8b13"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Global Editable Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "8847a6dfbebcf323a8170649b390af1a375c08b8"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Nutella Global Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "758e614412f11ecb58446966d328974daf253446"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "53df9e81ae46cf6bd2440643426224b1fb904aeb"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "name": "Published Security Policy - Restricted Visibility", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Global Published Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Security Policy - Restricted Visibility", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_VISIBILITY_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "6b410cc3e966037a3e534da53137d32856cd6bdb"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "b5f185da6208925fe296e074dbdfdd74678ad076"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "b9e4bba5fa277862093047710c3fccb44a553f91"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "a70b94dccf12d05fbcf6a1881e4726759d8714a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "134e6810dec03aed0a70f68bf16cdd3a390f99de"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "2c412cc87805c4f03622e671cd7cdd65402b5598"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "0f4d4a35b08b4d2aac7ce7cc18999a8e5f523edf"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.GLOBAL APPROVER", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "43af18c983afd26a477317ac0b608495d9e0b3df"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.GLOBAL APPROVER", "name": "Global approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "GLOBAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "00dacbe20687d3c5d0be9b4fc2997c572e3c36bf"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "0fbcf70c95f5d28645e7a6187f7c429d62e60380"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Global comm"}, "display_value": "Global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Global comm"}, "display_value": "Global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "container_name": "Oliver Read Only", "container_type_id": "L3 - Agency Structure", "container_type_name": "L3 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "55530f721f18c847e35d7c828edf53461b5014b0"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "330bb6f68316aab5c45f9fe34e047cce573c67cc"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "name": "Agency Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "AGENCY_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "e30e90d694f9935d4c15c4c78891beed8853a272"}, "metadata_element": {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "name": "Published Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "PUBLISHED_ASSET_SP_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "23b155c32d5c6142914b41458234c100812bbec8", "container_name": "Oliver", "container_type_id": "L2 - Agency Structure", "container_type_name": "L2 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.AGENCY", "tabular": false, "value_id": {"uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "originator_id": "23b155c32d5c6142914b41458234c100812bbec8", "inherited_field_id": "48fcbc397986aca5bb8722a95197dd0a46f19b4e"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_AGENCY", "column_name": "AGENCY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "container_name": "Z - Exchange", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "YY"}, "display_value": "AGENCIES", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Final Approver BPS ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}], "asset_lock_state_last_update_date": "2025-11-18T15:15:36.82+01:00", "content_lock_state_last_update_date": "2025-11-11T14:38:55.387+01:00"}, "language_code": null, "language_name": null, "subject_title": null, "file_extension": ".jpg", "asset_type_name": null, "file_size_bytes": null, "duration_seconds": null, "upload_directory": "89055343da08010910ebc7034cc2fd868d14a944", "local_campaign_id": "C000000566", "original_filename": "nutella pbased_beauty", "global_master_folder_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "global_master_campaign_id": "C000000138"} 2025-11-21 03:26:29.696276 \N 10 09Dux1 master_asset_created {"id": 10, "tags": null, "status": "active", "width_px": null, "height_px": null, "mime_type": "image/jpeg", "asset_type": null, "brand_code": null, "brand_name": null, "categories": null, "created_at": "2025-11-24T19:18:17.371254", "deleted_at": null, "is_deleted": false, "updated_at": "2025-11-24T19:18:17.371254", "description": "Box File ID: 000000000\\nBox URL: https://box.com/dummy\\nDAM Asset ID: DUMMY_ID_123", "ingested_at": "2025-11-24T19:18:17.371254", "ingested_by": null, "opentext_id": "DUMMY_ID_123", "tracking_id": "09Dux1", "aspect_ratio": null, "country_code": null, "country_name": null, "full_metadata": {"name": "dummy.jpg", "metadata": {"metadata_element_list": []}, "file_size": 100, "mime_type": "image/jpeg"}, "language_code": null, "language_name": null, "subject_title": null, "file_extension": ".jpg", "asset_type_name": null, "file_size_bytes": 100, "duration_seconds": null, "upload_directory": "DUMMY_FOLDER", "local_campaign_id": "C000000000", "original_filename": "dummy", "global_master_folder_id": null, "global_master_campaign_id": null} 2025-11-24 19:18:17.371254 \N 11 09Dux1 master_asset_updated {"new": {"id": 10, "tags": null, "status": "active", "width_px": null, "height_px": null, "mime_type": "image/jpeg", "asset_type": null, "brand_code": null, "brand_name": null, "categories": null, "created_at": "2025-11-24T19:18:17.371254", "deleted_at": null, "is_deleted": false, "updated_at": "2025-11-24T19:29:31.325633", "description": "Box File ID: 000000000\\nBox URL: https://box.com/dummy\\nDAM Asset ID: DUMMY_ID_123", "ingested_at": "2025-11-24T19:18:17.371254", "ingested_by": null, "opentext_id": "DUMMY_ID_123", "tracking_id": "09Dux1", "aspect_ratio": null, "country_code": null, "country_name": null, "full_metadata": {"name": "dummy.jpg", "metadata": {"metadata_element_list": []}, "file_size": 100, "mime_type": "image/jpeg"}, "language_code": null, "language_name": null, "subject_title": null, "file_extension": ".jpg", "asset_type_name": null, "file_size_bytes": 100, "duration_seconds": null, "upload_directory": "DUMMY_FOLDER", "local_campaign_id": "C000000000", "original_filename": "dummy", "global_master_folder_id": null, "global_master_campaign_id": null}, "old": {"id": 10, "tags": null, "status": "active", "width_px": null, "height_px": null, "mime_type": "image/jpeg", "asset_type": null, "brand_code": null, "brand_name": null, "categories": null, "created_at": "2025-11-24T19:18:17.371254", "deleted_at": null, "is_deleted": false, "updated_at": "2025-11-24T19:18:17.371254", "description": "Box File ID: 000000000\\nBox URL: https://box.com/dummy\\nDAM Asset ID: DUMMY_ID_123", "ingested_at": "2025-11-24T19:18:17.371254", "ingested_by": null, "opentext_id": "DUMMY_ID_123", "tracking_id": "09Dux1", "aspect_ratio": null, "country_code": null, "country_name": null, "full_metadata": {"name": "dummy.jpg", "metadata": {"metadata_element_list": []}, "file_size": 100, "mime_type": "image/jpeg"}, "language_code": null, "language_name": null, "subject_title": null, "file_extension": ".jpg", "asset_type_name": null, "file_size_bytes": 100, "duration_seconds": null, "upload_directory": "DUMMY_FOLDER", "local_campaign_id": "C000000000", "original_filename": "dummy", "global_master_folder_id": null, "global_master_campaign_id": null}} 2025-11-24 19:29:31.325633 \N 12 WcErVe master_asset_created {"id": 12, "tags": null, "status": "active", "width_px": null, "height_px": null, "mime_type": "image/jpeg", "asset_type": null, "brand_code": null, "brand_name": null, "categories": null, "created_at": "2026-01-16T20:41:18.90633", "deleted_at": null, "is_deleted": false, "updated_at": "2026-01-16T20:41:18.90633", "description": "Box File ID: 2105216512625\\nBox URL: https://app.box.com/file/2105216512625\\nDAM Asset ID: b5e69f3efdd81cd3a604708ed10c55a466d68b0e", "ingested_at": "2026-01-16T20:41:18.90633", "ingested_by": null, "opentext_id": "b5e69f3efdd81cd3a604708ed10c55a466d68b0e", "tracking_id": "WcErVe", "aspect_ratio": null, "country_code": null, "country_name": null, "full_metadata": {"name": "download.jpg", "links": {"links": [], "source_id": "b5e69f3efdd81cd3a604708ed10c55a466d68b0e"}, "locked": false, "deleted": false, "expired": false, "version": 1, "asset_id": "b5e69f3efdd81cd3a604708ed10c55a466d68b0e", "metadata": {"id": "ECOMMERCE", "name": "Marketing Asset", "type": "com.artesia.metadata.MetadataModel", "legacy_id": 116, "metadata_element_list": [{"id": "FERRERO.CATEGORY.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200054, "metadata_element_list": [{"id": "FERRERO.FIELD.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Status", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.CONTENT_STATUS", "edit_type": "COMBO_NOTNULL", "facetable": false, "searchable": true, "table_name": "FERRERO_CONTENT_STATUS_MD", "column_name": "CONTENT_STATUS", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9215, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRER.CATEGORY.ASSET_INFO", "name": "Asset Info", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200022, "metadata_element_list": [{"id": "FERRERO.FIELD.MKTG.ASSET TYPE", "name": "Asset Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.ASSETTYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.FISCAL YEAR", "name": "Release Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2026/2027"}, "display_value": "2026/2027", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Release Fiscal Year", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_DOMAIN_FISCAL_YEAR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "FISCAL__YEAR", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "name": "Main Languages", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1210, "metadata_element_list": [{"id": "MAIN_LANGUAGES", "name": "MAIN LANGUAGES", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "MAIN LANGUAGES", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MAIN LAGUAGES_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MAIN_LANGUAGE_TABLE", "column_name": "MAIN_LANGUAGE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "parent_table_name": "Main Languages", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.ASSET DESCRIPTION", "name": "Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Description", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "DESCR", "data_length": 249, "description": "Descriptive information", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.FLAVOUR", "name": "Flavour", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Flavour", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.FLAVOUR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FLAVOUR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.SIZE", "name": "Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Size", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.SIZE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SIZE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1241, "metadata_element_list": [{"id": "FERRERO.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Compliance", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ASSETCOMPLIANCE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_COMPLIANCE", "column_name": "ASSET_COMPLIANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "parent_table_name": "Asset Compliance", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.TAG DETAILS", "name": "Tag Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 118, "metadata_element_list": [{"id": "ARTESIA.FIELD.TAG", "name": "Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "food", "field_value": {"type": "string", "value": "food"}, "display_value": "food", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Tag", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "food", "field_value": {"type": "string", "value": "food"}, "display_value": "food", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.TAGS", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "OTMM_TAGS", "column_name": "TAG", "data_length": 80, "description": "Tag", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG CONFIDENCE", "name": "Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 67.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Confidence", "values": [{"value": {"type": "decimal", "value": 67.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Confidence", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG TYPE", "name": "Tag Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Tag Type", "values": [{"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "TAG_TYPE", "data_length": 10, "description": "Tag Type", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED BY", "name": "Associated By", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Associated By", "values": [{"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_BY", "data_length": 10, "description": "Associated By", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED DATE", "name": "Associated Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-14T14:24:27.55+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Associated Date", "values": [{"value": {"type": "dateTime", "value": "2026-01-14T14:24:27.55+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_DATE", "data_length": 10, "description": "Associated Date", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.STATE", "name": "Global/Local", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "GLOBAL"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO_NOTNULL", "facetable": true, "searchable": true, "table_name": "FERRERO_IC_ASSET_DETAILS", "column_name": "ASSET_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.ASPECT RATIO", "name": "Aspect Ratio (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio (Marketing)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASPECT_RATIO", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASPECT_RATIO", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "name": "Tag (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1222, "metadata_element_list": [{"id": "MARKETING_TAG", "name": "Marketing Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Marketing Tag", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.DOMAIN.TAG", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TAG_MARKET", "column_name": "TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "parent_table_name": "Tag (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.TAGS", "name": "Auto-Generated Tags", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Auto-Generated Tags", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "AUTO_GENERATED_TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CERTIFIER", "name": "Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approver", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.MARKETING.FIELD.APPROVAL DATE", "name": "Approval__Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approval__Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.LEGAL APPROVAL DATE", "name": "Legal Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CERTIFIER", "name": "IA&CC Certifier", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Certifier", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CC APPROVAL DATE", "name": "IA&CC Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "name": "Extended Approval", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1230, "metadata_element_list": [{"id": "FERRERO.FIELD.EXTENDED.APPROVAL", "name": "Extended Approval required by:", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended Approval required by:", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COMMENTS", "name": "Comment", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comment", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "COMMENTS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.DATE", "name": "Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USERS", "name": "User ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "User ID", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "USERS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXTENDED.JOBID", "name": "Extended JobID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended JobID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.MIGRATION.INDEX", "name": "Migration Index", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Migration Index", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MIGRATION.INDEX", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MIGRATION_INDEX", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "FERRERO_MARKET_MARKETING_CREATOR", "name": "Marketing Creator", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Marketing Creator", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.CREATOR", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MARKETING_CREATOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "ARTESIA.FIELD.IS LATEST VERSION", "name": "Is Latest Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Y"}, "display_value": "Yes", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Is Latest Version", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.YES_NO", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "IS_LATEST_VERSION", "data_length": 1, "description": "Is this the latest version? (Y/N)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET VERSION", "name": "Asset Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 1}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Version", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "INTEGER", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "VERSION", "data_length": 12, "description": "Version number of asset", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET_ID", "name": "Asset ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "b5e69f3efdd81cd3a604708ed10c55a466d68b0e"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset ID", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "LOGICAL_UOI_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.ECOMMERCE STATUS", "name": "Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "PUBLISHED"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Status", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "ASSET_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CREATOR", "name": "Uploaded by", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Uploaded by", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_USER_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.FIELD.CREATION DATE", "name": "Upload Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-14T14:23:41.747+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Upload Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_DT", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.ASSET NAME", "name": "Asset Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "download.jpg"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Name", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "description": "Original name of master object", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.CONTENT TYPE", "name": "Content Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "BITMAP"}, "display_value": "Image", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Type", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.CONTENT_TYPES", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "CONTENT_TYPE", "data_length": 8, "description": "Content Type", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.MIME TYPE", "name": "File Extension", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "image/jpeg"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Extension", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_MIME_TYPE", "data_length": 80, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.FILE.SIZE", "name": "File Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "long", "value": 18093}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Size", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "LONG", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_SIZE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP RESOLUTION", "name": "Bitmap Resolution", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 72}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Resolution", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_RESOLUTION", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP WIDTH", "name": "Bitmap Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 257}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Width", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_WIDTH", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP HEIGHT", "name": "Bitmap Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 196}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Height", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_HEIGHT", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "name": "Approval Metadata", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1249, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.DEPARTMENT", "name": "Department", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Department", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "DEPARTMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.CERTIFIER", "name": "Certifier", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Certifier", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL DATE", "name": "Approval Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Approval Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "APPROVAL_DATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.COMMENT", "name": "Comments", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comments", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "COMMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.TYPE OF APPROVAL", "name": "Type of Approval", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Approval", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "TYPE_OF_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL STATUS", "name": "Approval Status", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Approval Status", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "APPROVAL_STATUS", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.SUB JOBID", "name": "Sub Job Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sub Job Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.VIDEO.BIT_RATE", "name": "Bitrate", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitrate", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "BIT_RATE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.EMBEDDED.FIELD.DURATION", "name": "Duration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Duration", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "DURATION_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.ASPECT RATIO", "name": "Aspect Ratio", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "ASPECT_RATIO", "data_length": 30, "displayable": false, "instructions": "ASPECT_RATIO", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME HEIGHT", "name": "Frame Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Height", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_HEIGHT", "data_length": 12, "displayable": true, "instructions": "FRAME_HEIGHT", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME WIDTH", "name": "Frame Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Width", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_WIDTH", "data_length": 12, "displayable": true, "instructions": "FRAME_WIDTH", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.ASPECT.RATIO.POC", "name": "Aspect Ratio(POC)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio(POC)", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASPECT_RATIO_TABLE", "column_name": "ASPECT_RATIO", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "PRODUCT.DETAILS", "name": "Product Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200029, "metadata_element_list": [{"id": "FERRERO.TABLE.EANCODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1208, "metadata_element_list": [{"id": "EAN_CODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "EAN CODE/ 77 CODE", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "EAN.CODE", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "EAN_CODE", "column_name": "EAN_CODE_DESCRIPTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "COUNTRY", "name": "COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "EAN_CODE", "column_name": "COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKETING.ADVANCE.PRODUCT.LINK", "name": "Asset-to-product relation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset-to-product relation", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_MARKETING_ADVANCE_PRODUCT_LINK", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ADVANCE_PRODUCT_LINK", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 10182, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.SUB BRAND", "name": "Sub-Brands", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Sub-Brands", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.SUBBRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "SUB_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT WEIGHT", "name": "Product Weight", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Weight", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_WEIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.CONSUMER UNIT PACKAGING", "name": "Consumer Unit Packaging", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Consumer Unit Packaging", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PACK", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "CONSUMER_UNIT_PACKAGING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.4 DIGIT CODE", "name": "4 Digit Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "4 Digit Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "DIGITCODE", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERREO.ECOM.RETAILER_SPECIFIC_FIELD", "name": "Retailer Specific", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Retailer Specific", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "RETAILER_SPECIFIC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "cascading_group_id": "FERRERO.RETAILER.SPECIFIC", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY START PERIOD", "name": "Asset validity start period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity start period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_STARTING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY END PERIOD", "name": "Asset validity end period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity end period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_ENDING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.ASSET.NAMING.CONVENTION", "name": "Does asset need GS1 naming convention", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Does asset need GS1 naming convention", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASSETNAMINGCONVENTION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_NAMING_CONVENTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9515, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT VIEW", "name": "Product View", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product View", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT VIEW", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_VIEW", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT ANGLE", "name": "Product Angle", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Angle", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT.ANGLE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_ANGLE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT STATE", "name": "Product State", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product State", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT STATE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PROMOTION ID", "name": "Promo ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Promo ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROMO_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.BUSINESS.ASSET TYPE", "name": "Asset Type (eDAM)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Angled view", "field_value": {"type": "string", "value": "angledview"}, "display_value": "ANGLED VIEW", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Type (eDAM)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "OTMM.DOMAIN.OTMM_ASSETTYPE_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_BUSINESS_INFO", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7244, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200048, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.AGENCY NAME", "name": "Agency Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "0000000001"}, "display_value": "ATest", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Agency Name", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.AGENCY_NAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AGENCY_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7336, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.CREATIX", "name": "CreativeX", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200059, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.CREATIVEX", "name": "Confidence", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1245, "metadata_element_list": [{"id": "FERRERO.TAB.FIELD.CREATIVEX", "name": "Platform > Rating (%)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Platform > Rating (%)", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_CREATIVEX", "column_name": "CREATIVEX_NEW", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CREATIVEX", "parent_table_name": "Confidence", "cascading_group_id": "FERRERO.CREATIVEX.CHAR", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.CREATIVEX LINK", "name": "CreativeX Hyperlink", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "CreativeX Hyperlink", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_CREATIVEX", "column_name": "CREATIVE_LINK", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.IP_RIGHTS", "name": "IP Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200046, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.IPRIGHT", "name": "IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IP Rights", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.IPRIGHTS", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IP_RIGHTS", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.BUYOUT", "name": "Touchpoint Scope", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Touchpoint Scope", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.TOTAL_BUYOUT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TOTAL_BUYOUT", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.FERRERO PROPERTY", "name": "Ferrero Property", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Ferrero Property", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.FERRERO_PROPERTY", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FERRERO_PROPERTY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200035, "metadata_element_list": [{"id": "FERRERO.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1209, "metadata_element_list": [{"id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "name": "IP Coverage, Area, Region & Market Unit", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Coverage, Area, Region & Market Unit", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "IPCOVERAGE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "cascading_group_id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHT TYPE", "name": "Copyright Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHT_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.MEDIATYPE", "name": "Media Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Media Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MEDIA_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "MEDIA_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE FROM", "name": "Expiration of Usage - From", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - From", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_FROM", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE TO", "name": "Expiration of Usage - To", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - To", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_TO", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO._DURATION", "name": "IP Duration", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Duration", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "ECOM_DURATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHTTYPE DETAILS", "name": "Copyright Type Details", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type Details", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHTTYPE_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 6, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.MARKET.VID_STAT_RIGHT", "name": "Video & Static Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200047, "metadata_element_list": [{"id": "FERRERO.MARKET.VID_N_STAT", "name": "Video and Static Right", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video and Static Right", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VID_AND_STAT_RIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.VID_STAT_TYPE", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1221, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.TYPE_VID", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Video & Static Right", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TYPE_VID_STAT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_MARKET_TYPE_VID_STAT", "column_name": "TYPE_OF_VIDEO_STATIC_RIGHT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.VID_STAT_TYPE", "parent_table_name": "Type of Video & Static Right", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKET.PROD_COMPANY", "name": "Production House", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Production House", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.PRODUCT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200050, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.LICENSIN", "name": "Licensing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Licensing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSING", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "cascading_group_id": "FERRERO.MARKET.CG.LICENSE", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.SPOT_DETAILS", "name": "Spot Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200049, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.SPOT_VERSION", "name": "Spot Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Version", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_VERSION", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_VERSION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.SPOT_TYPE", "name": "Spot Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_TYPE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.DIRECTOR_NAME", "name": "Director Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Director Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "DIRECTOR_NAME", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VIDEO_POST_PROD_COMPANY", "name": "Video Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VID_POST_PROD_CONTACT", "name": "Video Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_COMPANY", "name": "Audio Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_CONTACT", "name": "Audio Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.BROADCASTER.CODE", "name": "Broadcaster Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Broadcaster Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BROADCASTER_CODE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.TECHNICAL_VALIDATION", "name": "Technical Validation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Technical Validation", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TECHNICAL_VALIDATION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS", "name": "Media Analysis", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1002, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "name": "Categories", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 105, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY NAME", "name": "Category Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "indoor_marketstore"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Category Name", "values": [{"value": {"type": "string", "value": "indoor_marketstore"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "NAME", "data_length": 100, "description": "Category Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY CONFIDENCE", "name": "Category Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 56.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Category Confidence", "values": [{"value": {"type": "decimal", "value": 56.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "CONFIDENCE", "data_length": 10, "description": "Category Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES COUNT", "name": "Faces Count", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Faces Count", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACECOUNT", "column_name": "COUNT", "data_length": 10, "description": "Faces Count", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "name": "Face Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 106, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME", "name": "Recognized Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME", "data_length": 2000, "description": "Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME CONFIDENCE", "name": "Recognized Name Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME_CONFIDENCE", "data_length": 10, "description": "Name Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE", "name": "Person Age", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE", "data_length": 10, "description": "Person Age", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE CONFIDENCE", "name": "Person Age Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Person Age Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_CONFIDENCE", "data_length": 10, "description": "Person Age Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER", "name": "Gender", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Gender", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.GENDER", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER", "data_length": 40, "description": "Gender", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER CONFIDENCE", "name": "Gender Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Gender Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER_CONFIDENCE", "data_length": 10, "description": "Gender Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.FACE COORDS", "name": "Face Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "FACE_COORDS", "data_length": 200, "description": "Face Coordinates like postion, height,width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE GROUP", "name": "Person Age Group", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age Group", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.AGE GROUP", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_GROUP", "data_length": 10, "description": "Person Age Group", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "name": "Safe Content", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 107, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONTENT TYPE", "name": "Safe Content Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Safe Content Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENTS", "data_length": 20, "description": "Safe Content Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONFIDENCE", "name": "Content Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Content Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENT_CONFIDENCE", "data_length": 10, "description": "Safe Content Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "name": "Colors", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 108, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.NAME", "name": "Color", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Yellow"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Color", "values": [{"value": {"type": "string", "value": "Yellow"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "Grey"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "NAME", "data_length": 25, "description": "COLOR", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.PROPORTION", "name": "Color Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Color Confidence", "values": [{"is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "PROPORTION", "data_length": 10, "description": "Proportion", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.FOREGROUND", "name": "Foreground Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Yellow"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Foreground Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "FOREGROUND", "data_length": 25, "description": "Foreground Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.BACKGROUND", "name": "Background Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Grey"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Background Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "BACKGROUND", "data_length": 25, "description": "Background Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.ISBW", "name": "Is Black and White", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "false"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Is Black and White", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "ISBW", "data_length": 10, "description": "Is Black and White", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "name": "Captions", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 109, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION TEXT", "name": "Caption Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "a close up of a keyboard"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Caption Text", "values": [{"value": {"type": "string", "value": "a close up of a keyboard"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "TEXT", "data_length": 2000, "description": "Caption Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION CONFIDENCE", "name": "Caption Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 56.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Caption Confidence", "values": [{"value": {"type": "decimal", "value": 56.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "CAPTION_CONFIDENCE", "data_length": 10, "description": "Caption Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "name": "Image Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 110, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.IMAGE TYPE", "name": "Analysis Image Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Analysis Image Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_IMAGE_TYPE", "column_name": "TYPE", "data_length": 100, "description": "Image Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "parent_table_name": "Image Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.DATE", "name": "Date: Media Analysis", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-14T14:24:27+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date: Media Analysis", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MEDIA_ANALYSIS_DATE", "data_length": 25, "description": "Date Media Analysis was done on the asset.", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR LANGUAGE", "name": "Image Text Language", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "unk"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Image Text Language", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "LANGUAGE", "data_length": 10, "description": "OCR data language", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR TEXT", "name": "Text on Image", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Text on Image", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "TEXT", "data_length": 4000, "description": "OCR Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "name": "Embedded Brand Info", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 119, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.NAME", "name": "Embedded Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Embedded Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Embedded Brand Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.CONFIDENCE", "name": "Embedded Brand Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Embedded Brand Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Embedded Brand Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.COORDINATES", "name": "Embedded Brand Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Embedded Brand Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "COORDINATES", "data_length": 200, "description": "Embedded Brand Coordinates like position, height, width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "HYBRIS.PRODUCT.INFO", "name": "PIM Item Reference", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200027, "metadata_element_list": [{"id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "name": "Hybris Item Reference", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1206, "metadata_element_list": [{"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ID", "name": "Hybris Item ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ID", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT TAG NAME", "name": "Hybris Assignment Label", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Assignment Label", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_TAG_NAME", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ATTRIBUTE NAME", "name": "Hybris Attribute Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Attribute Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ATTRIBUTE_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT CATALOG NAME", "name": "Hybris Catalog Mnemonic", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Catalog Mnemonic", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_CATALOG_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT PK", "name": "Hybris Item PK", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item PK", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_PK", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.SYSTEM ID", "name": "Hybris System ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris System ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "SYSTEM_ID", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.ASSIGNED", "name": "Assigned", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Assigned", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "ASSIGNED", "column_name": "ASSIGNED", "data_length": 38, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PIM TYPE", "name": "PIM Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "PIM Type", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_PIM_TYPE", "column_name": "PIM_TYPE", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS VIDEO", "name": "Media Analysis Video", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1003, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "name": "Labels", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 113, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.ID", "name": "Label Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "ID", "data_length": 40, "description": "Label Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.NAME", "name": "Label Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "NAME", "data_length": 40, "description": "Label Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.APPEARANCES", "name": "Label Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "APPEARANCES", "data_length": 0, "description": "Label Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "name": "Sentiments", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 114, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.ID", "name": "Sentiment Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "ID", "data_length": 40, "description": "Sentiment Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.NAME", "name": "Sentiment Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "NAME", "data_length": 40, "description": "Sentiment Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.APPEARANCES", "name": "Sentiment Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "APPEARANCES", "data_length": 0, "description": "Sentiment Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.SEEN.DURATION.RATIO", "name": "Sentiment Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Sentiment Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "name": "Keywords", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 115, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.ID", "name": "Keyword Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "ID", "data_length": 40, "description": "Keyword Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.NAME", "name": "Keyword Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "NAME", "data_length": 40, "description": "Keyword Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.APPEARANCES", "name": "Keyword Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Keyword Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "name": "Faces", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 111, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.ID", "name": "Face Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "ID", "data_length": 40, "description": "Face Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.NAME", "name": "Face Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "NAME", "data_length": 40, "description": "Face Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.TITLE", "name": "Face Title", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Title", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "TITLE", "data_length": 249, "description": "Face Title", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.DESCRIPTION", "name": "Face Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Face Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.APPEARANCES", "name": "Face Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "APPEARANCES", "data_length": 0, "description": "Face Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SPEAKER.FACE.ID", "name": "Video Speaker Object Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Speaker Object Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "THUMBNAIL_OBJECT_ID", "data_length": 40, "description": "Video Speaker Object Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.SEEN.DURATION.RATIO", "name": "Face Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "SEEN_DURATION_RATIO", "data_length": 20, "description": "Face Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "name": "Brands", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 112, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.ID", "name": "Video Brand Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "ID", "data_length": 40, "description": "Brand Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.NAME", "name": "Video Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Brand Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.DESCRIPTION", "name": "Video Brand Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Brand Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.WIKIURL", "name": "Video Brand Wiki URL", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Wiki URL", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "WIKIURL", "data_length": 200, "description": "Brand Wiki URL", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.APPEARANCES", "name": "Video Brand Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Brand Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.SEEN.DURATION.RATIO", "name": "Video Brand Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Brand Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "name": "Speeches", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 116, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.ID", "name": "SpeechText Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "SpeechText Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "ID", "data_length": 40, "description": "SpeechText Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXT", "name": "Speech Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Text", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXT", "data_length": 1000, "description": "Speech Text", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXTTYPE", "name": "Speech Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXTTYPE", "data_length": 40, "description": "Speech Type", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.START TIME", "name": "Speech Start Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Start Time", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "START_TIME", "data_length": 40, "description": "Speech Start Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.END TIME", "name": "Speech End Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech End Time", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "END_TIME", "data_length": 40, "description": "Speech End Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "name": "Speakers", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 122, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.ID", "name": "Speaker Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "ID", "data_length": 40, "description": "Speaker Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.NAME", "name": "Speaker Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "NAME", "data_length": 100, "description": "Speaker Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.APPEARANCES", "name": "Speaker Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "APPEARANCES", "data_length": 0, "description": "Speaker Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.FIELDGROUP.LOCALASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200057, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1239, "metadata_element_list": [{"id": "FERRERO.FIELD.COUNTRY", "name": "LOCAL COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "LOCAL COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USER", "name": "USER", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "USER", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_USER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.ASSOCIATION", "name": "TYPE OF ASSOCIATION", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "TYPE OF ASSOCIATION", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_ASSOCIATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.VALUE", "name": "VALUE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "VALUE", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_VALUE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "CG.CATEGORY.FADEL ASSET INFORMATION", "name": "Rights Asset Information", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200064, "metadata_element_list": [{"id": "CG.FIELD.RIGHTS MANAGED", "name": "Fadel IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fadel IP Rights", "enabled": true, "options": "", "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_RIGHTS_MANAGED_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGED", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.NEEDS RIGHTS MANAGEMENT", "name": "Needs Rights Management", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "10", "field_value": {"type": "string", "value": "N"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Needs Rights Management", "enabled": true, "options": "", "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_NEEDS_RIGHTS_MANAGEMENT_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "NEEDS_RIGHTS_MANAGEMENT", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.RIGHTS MANAGEMENT DESCRIPTION", "name": "Rights Management Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Rights Management Description", "enabled": true, "options": "", "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGEMENT_DESCRIPTION", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.RIGHTS MANAGEMENT STATUS", "name": "Rights Management Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Rights Management Status", "enabled": true, "options": "", "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_RIGHTS_MANAGEMENT_STATUS_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGEMENT_STATUS", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.FORCE SYNC", "name": "Force Sync", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Force Sync", "enabled": true, "options": "", "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_FORCE_SYNC_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "FORCE_SYNC", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.LAST SYNC TIME", "name": "Date of last data sync", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date of last data sync", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "LAST_SYNC_TIME", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "CG.CATEGORY.FADEL RIGHTS INFORMATION", "name": "Rights Information", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200065, "metadata_element_list": [{"id": "CG.TABLE.RIGHTS", "name": "Rights", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1256, "metadata_element_list": [{"id": "CG.FIELD.RIGHT TERRITORIES", "name": "Territory", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Territory", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "TERRITORY", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT USES", "name": "Use", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Use", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "USAGE", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT IN DATE", "name": "In Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "In Date", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "IN_DATE", "data_length": 10, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT OUT DATE", "name": "Out Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Out Date", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "OUT_DATE", "data_length": 10, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "saved_values_behavior_mode": 0}]}]}, {"id": "CG.CATEGORY.FADEL AGREEMENTS AND PARTIES", "name": "Agreements and Parties", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200067, "metadata_element_list": [{"id": "CG.TABLE.PARTIES.AGREEMENTS VW", "name": "Customized Table Parties and Agreements", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1258, "metadata_element_list": [{"id": "CG.FIELD.AGREEMENT NUMBER VW", "name": "Agreement Number ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Number ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_NUMBER", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT DESCRIPTION VW", "name": "Agreement Description ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Description ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_DESCRIPTION", "data_length": 2000, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT START DATE VW", "name": "Agreement Start Date ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Start Date ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_START_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT END DATE VW", "name": "Agreement End Date ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement End Date ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_END_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY NAME VW", "name": "Party Name ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Name ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_NAME", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY ROLE VW", "name": "Party Role ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Role ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_ROLE", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY EMAIL ADDRESS VW", "name": "Party Email Address ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Email Address ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_EMAIL_ADDRESS", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY PHONE NUMBER VW", "name": "Party Phone Number ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Phone Number ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_PHONE_NUMBER", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PRIMARY PARTY CONTACT VW", "name": "Primary Party Contact ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Primary Party Contact ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PRIMARY_PARTY_CONTACT", "data_length": 200, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 8, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}], "has_multilingual_fields": false}, "mime_type": "image/jpeg", "path_list": [{"parents": [{"id": "d4d9835db002b9992125246f2abb7117c99ab016", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "d4d9835db002b9992125246f2abb7117c99ab016", "sequence_number": 0}, {"id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "name": "MASTER CAMP FER ROCHER 12.01.2", "container_state": "NORMAL", "original_uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "sequence_number": 0}, {"id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "name": "01. DE - Rocher ", "container_state": "NORMAL", "original_uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "sequence_number": 0}, {"id": "091216b59cad7f1ea815164c26db27e350c54023", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "sequence_number": 0}, {"id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "name": "01. Rocher", "container_state": "NORMAL", "original_uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "sequence_number": 0}, {"id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "name": "01. Ferrero Rocher", "container_state": "NORMAL", "original_uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "sequence_number": 0}, {"id": "93b0968611de11160ed068afeb9930b9965bd5ff", "name": "03. Premium Chocolate", "container_state": "NORMAL", "original_uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "sequence_number": 0}], "complete": true, "sequence_number": 2, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "sequence_number": 0}, {"id": "4b05a895330aa2fb6046f59731aba5dd93858431", "name": "LOCADAPLOCCOMM - FER ROCHER 4", "container_state": "NORMAL", "original_uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "sequence_number": 0}, {"id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "name": "25-26", "container_state": "NORMAL", "original_uoi_id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "sequence_number": 0}, {"id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "name": "02. Campaign", "container_state": "NORMAL", "original_uoi_id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "sequence_number": 0}, {"id": "f31042cfc487f066486c46527c076b8ee6618ceb", "name": "01. Standard", "container_state": "NORMAL", "original_uoi_id": "f31042cfc487f066486c46527c076b8ee6618ceb", "sequence_number": 0}, {"id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "name": "02. Sweden", "container_state": "NORMAL", "original_uoi_id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "sequence_number": 0}, {"id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "name": "SCANDINAVIA", "container_state": "NORMAL", "original_uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "sequence_number": 0}, {"id": "f2649309eb916c5c25bb309e3db061042c3eecca", "name": "01. MC - Rocher", "container_state": "NORMAL", "original_uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "sequence_number": 0}, {"id": "091216b59cad7f1ea815164c26db27e350c54023", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "sequence_number": 0}, {"id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "name": "01. Rocher", "container_state": "NORMAL", "original_uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "sequence_number": 0}, {"id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "name": "01. Ferrero Rocher", "container_state": "NORMAL", "original_uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "sequence_number": 0}, {"id": "93b0968611de11160ed068afeb9930b9965bd5ff", "name": "03. Premium Chocolate", "container_state": "NORMAL", "original_uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "d4d9835db002b9992125246f2abb7117c99ab016", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "d4d9835db002b9992125246f2abb7117c99ab016", "sequence_number": 0}, {"id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "name": "MASTER CAMP FER ROCHER 12.01.2", "container_state": "NORMAL", "original_uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "sequence_number": 0}, {"id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "name": "01. DE - Rocher ", "container_state": "NORMAL", "original_uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "sequence_number": 0}, {"id": "bfbc248a12a4bf0382406620f0d9ec41ff42e35e", "name": "01. Ferrero Rocher", "container_state": "NORMAL", "original_uoi_id": "bfbc248a12a4bf0382406620f0d9ec41ff42e35e", "sequence_number": 0}, {"id": "3d7debea6815ae46c9598191b1c645007666292a", "name": "03 . Premium Chocolate", "container_state": "NORMAL", "original_uoi_id": "3d7debea6815ae46c9598191b1c645007666292a", "sequence_number": 0}, {"id": "c0bb10be2b8f96ee4d27a2dfb7e0d03de68cf114", "name": "DE", "container_state": "NORMAL", "original_uoi_id": "c0bb10be2b8f96ee4d27a2dfb7e0d03de68cf114", "sequence_number": 0}, {"id": "b124e1ed196028bdd0e2c093e28078ca8d9ad462", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "b124e1ed196028bdd0e2c093e28078ca8d9ad462", "sequence_number": 0}, {"id": "68ce80e8c8a30badb82dabfd823886a6fa6fe309", "name": "Y - Geography", "container_state": "NORMAL", "original_uoi_id": "68ce80e8c8a30badb82dabfd823886a6fa6fe309", "sequence_number": 0}], "complete": true, "sequence_number": 2, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "sequence_number": 0}, {"id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "name": "Read Only", "container_state": "NORMAL", "original_uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "sequence_number": 0}, {"id": "23b155c32d5c6142914b41458234c100812bbec8", "name": "Oliver", "container_state": "NORMAL", "original_uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "sequence_number": 0}, {"id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "name": "Z - Exchange", "container_state": "NORMAL", "original_uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}], "creator_id": "1003", "asset_state": "NORMAL", "checked_out": false, "folder_path": "", "content_size": 18093, "content_type": "BITMAP", "content_state": "NORMAL", "date_imported": "2026-01-14T14:23:41.747+01:00", "import_job_id": 225736, "subscribed_to": false, "collection_ids": [], "latest_version": true, "legacy_model_id": 116, "content_editable": true, "import_user_name": "bizAdmin", "date_last_updated": "2026-01-14T14:26:40.677+01:00", "metadata_model_id": "ECOMMERCE", "original_asset_id": "b5e69f3efdd81cd3a604708ed10c55a466d68b0e", "rendition_content": {"preview_content": {"id": "1b3fb8ad25ac04b3ab82c8cbd1653d097e73d19b", "url": "/otmmapi/v6/renditions/1b3fb8ad25ac04b3ab82c8cbd1653d097e73d19b", "name": "download-S.png", "width": 257, "height": 196, "mime_type": "image/png", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "PREVIEW", "content_path": "data\\\\repository\\\\screen\\\\vol0\\\\186\\\\download-S_1b3fb8ad25ac04b3ab82c8cbd1653d097e73d19b.png", "content_size": 127896, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "thumbnail_content": {"id": "378e6172d0245c0bb5e0a7cb599e4fa68a1a8b3e", "url": "/otmmapi/v6/renditions/378e6172d0245c0bb5e0a7cb599e4fa68a1a8b3e", "name": "download-T.png", "width": 257, "height": 196, "mime_type": "image/png", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "THUMBNAIL", "content_path": "data\\\\repository\\\\thumb\\\\vol0\\\\201\\\\download-T_378e6172d0245c0bb5e0a7cb599e4fa68a1a8b3e.png", "content_size": 127896, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_content_info": {"master_content": {"id": "e39e7d38b7abac1f67523cf4e933a2abc03ed232", "url": "/otmmapi/v6/renditions/e39e7d38b7abac1f67523cf4e933a2abc03ed232", "name": "download.jpg", "width": 257, "height": 196, "mime_type": "image/jpeg", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\227\\\\download_e39e7d38b7abac1f67523cf4e933a2abc03ed232.jpg", "content_size": 18093, "unit_of_size": "BYTES", "content_checksum": "170a85265b7055a13a6495204a06bb15", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_state_user_id": "1003", "master_content_info": {"id": "e39e7d38b7abac1f67523cf4e933a2abc03ed232", "url": "/otmmapi/v6/renditions/e39e7d38b7abac1f67523cf4e933a2abc03ed232", "name": "download.jpg", "width": 257, "height": 196, "mime_type": "image/jpeg", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\227\\\\download_e39e7d38b7abac1f67523cf4e933a2abc03ed232.jpg", "content_size": 18093, "unit_of_size": "BYTES", "content_checksum": "170a85265b7055a13a6495204a06bb15", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "delivery_service_url": "https://ppr.dam.ferrero.com/adaptivemedia/rendition?id=b5e69f3efdd81cd3a604708ed10c55a466d68b0e", "product_associations": false, "security_policy_list": [{"id": 1594, "name": "Security Policy_ Default Ecom Upload", "status": "NORMAL", "created_by": "1001", "create_date": "2022-05-24T16:22:28.927+02:00", "description": "Security Policy_ Default Ecom Upload", "ownership_type": "PUBLIC"}, {"id": 5467, "name": "Marketing Viewer", "status": "NORMAL", "created_by": "1003", "create_date": "2023-10-06T16:52:07.297+02:00", "description": "Marketing Viewer", "ownership_type": "PUBLIC"}], "thumbnail_content_id": "378e6172d0245c0bb5e0a7cb599e4fa68a1a8b3e", "content_state_user_id": "1003", "content_state_user_name": "OTMM BusinessAdmin", "asset_lock_state_user_id": "1003", "metadata_state_user_name": "OTMM BusinessAdmin", "access_control_descriptor": {"permissions_map": {"entry": [{"key": "text.securityPolicy.permission.Custom04Permission", "value": true}, {"key": "text.securityPolicy.permission.ContentEditPermission", "value": true}, {"key": "text.securityPolicy.permission.AssetViewPermission", "value": true}, {"key": "text.securityPolicy.permission.ProjectViewPermission", "value": true}, {"key": "text.securityPolicy.permission.MembershipEditPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom03Permission", "value": true}, {"key": "text.securityPolicy.permission.MetaDataEditPermission", "value": true}, {"key": "text.securityPolicy.permission.EditParentsPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom02Permission", "value": true}, {"key": "text.securityPolicy.permission.ExportPermission", "value": true}, {"key": "text.securityPolicy.permission.SummaryViewPermission", "value": true}, {"key": "text.securityPolicy.permission.PreviewViewPermission", "value": true}, {"key": "text.securityPolicy.permission.SubscribePermission", "value": true}, {"key": "text.securityPolicy.permission.DeleteAssetPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom01Permission", "value": true}]}}, "content_lock_state_user_id": "1003", "asset_state_last_update_date": "2026-01-14T14:26:40.677+01:00", "content_lock_state_user_name": "bizAdmin", "metadata_lock_state_user_name": "bizAdmin", "content_state_last_update_date": "2026-01-14T14:23:42.047+01:00", "inherited_metadata_collections": [{"container_id": "d4d9835db002b9992125246f2abb7117c99ab016", "container_name": "05. Final Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "d4d9835db002b9992125246f2abb7117c99ab016", "originator_id": "d4d9835db002b9992125246f2abb7117c99ab016", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "05. Final Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "container_name": "MASTER CAMP FER ROCHER 12.01.2", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "MASTER CAMP FER ROCHER 12.01.2"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000783"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "MASTER_CAMP_FER_ROC_CQ_LG_DE_PRE_0000783"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local comm on global brands"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Master Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Master Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2026/2027"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "B1"}, "display_value": "Master campaign ready for re-mastering", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ADDITIONALAPPROVER", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.LICENSING", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "d0ef653291e269a7d1ddf0ebfedd1c6ad70b1c59"}, "metadata_element": {"id": "FERRERO.FIELD.LICENSING", "name": "Campaign License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "LICENSING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}}]}, {"container_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "container_name": "01. DE - Rocher ", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "bb01cf85444107f22341d2b88421f0cbaade0bf9"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E006"}, "display_value": "GERMANY", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Local DE Editable Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Premium Chocolate Local DE Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "8f497ce53d23899c7c09aa5a7ca69c9f55c3a62d"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E64"}, "display_value": "GERMANY", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "ca70a6d55e4277ecbef2a01a593c614501cbcf74"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "3e9d669ab1047383d0416ba40af75744148c94c8"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0e241fc386dcd91baa31a409e297169fe4a352c2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "2e3e0f2be0e487b540d9b63cb8c0e9ed9c6b1bb6"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "359c98154f230a60acc6b4eb048e129411d7a778"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "b3698893fc223e8371f4e4c0d560d0536c724a09"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "e92f9f10c0c29dda8261218c2c72a0baa66472f2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "15dff42c3b196ba3ae5b3c2ea33f00e347e6f654"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Extended Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0ae044cd9dddf86cd9406c9edc3996b18c430be0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "name": "AMMC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AMMC", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LOCAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "7806fed6127b50c21f6b03e1f7b63f3dedc1e8d1"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "RMMC", "values": [{"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "4c8a2d6e178638bfacfeaf3f7f6f1000304693a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "name": "Product Asset Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Product Asset Approval Ferrero Rocher Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Asset Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCT_ASSET_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local comm on global brands"}, "display_value": "Local comm on global brands", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "5a1ae26558efdc03336c0df838dd9e7c2a51c687"}, "metadata_element": {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "name": "Market Unit", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market Unit", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETUNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "MARKET_UNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "091216b59cad7f1ea815164c26db27e350c54023", "container_name": "EU", "container_type_id": "GEOGRAPHYLOCAL", "container_type_name": "L4 - GEOGRAPHY LOCAL", "inherited_metadata_values": [{"id": "FERRERO.MARKET.FOLDER.GLOBAL", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "4c4d4bf36bf8b1ace55f990e78d6332a9cb20990"}, "metadata_element": {"id": "FERRERO.MARKET.FOLDER.GLOBAL", "name": "Global/Local (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "LOCAL"}, "display_value": "Local", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local (Marketing)", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "GLOBALLOCAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_AREA", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "3dc200c993ab8263952dc6da1498026f615f45dd"}, "metadata_element": {"id": "MARKETING_AREA", "name": "AREA", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E010"}, "display_value": "EUROPE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "AREA", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "AREA", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "AREA", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "dc7749c3e113ec9e0b9e9a3840ea55673ca5e49f"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "f2d658a3829c2ea158ae70a4b4e7928bcf88f8e2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "972d0258a82de85672bd84d8af68cdb67ad3d3ca"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "1212505ad3fe4c9d7458568f3d95aeb4c4e5c37e"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "9d1dfdef55ff7a3eb03552988ddf729c7a0f5107"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "54f006eeb366121a29ee98da33d437615dcd34e0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "1fd8802010e30d44cebb2f3eb090b12ac550f97d"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "8b6e1d8f7dc3c4671cfc11a2914d838ca3ee3f3b"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "be0dc9a87262ee7fd165237b531ba3b7aa93a260"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "2f99f0f0f9e43fb34df9222c8b73a86fb78e473e"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "container_name": "01. Rocher", "container_type_id": "GLOBALBRAND", "container_type_name": "L3 - BRAND", "inherited_metadata_values": [{"id": "FERRERO.TABULAR.NEW.BRAND", "tabular": true, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "9bb1c183135f5240f09132aef59c4ea48c762381"}, "metadata_element": {"id": "FERRERO.TABULAR.NEW.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF04"}, "display_value": "ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND (Marketing)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF04"}, "display_value": "ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "BRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TABULAR_BRAND", "column_name": "BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.NEW.BRAND", "parent_table_name": "BRAND (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "tabular": true, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "a37b13c02cba799378211e17b73234a0d836f9b6"}, "metadata_element": {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "CQ"}, "display_value": "FERRERO ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND(HARMONIZED)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "CQ"}, "display_value": "FERRERO ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.HARMONIZEDBRAND", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_HARMONIZEDBRAND", "column_name": "HARMONIZEDBRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.HARMONIZEDBRAND", "parent_table_name": "BRAND(HARMONIZED)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "AGENCY.COLLABORATION", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "183d6e0957a9940f9b18ef44f46d957802b63397"}, "metadata_element": {"id": "AGENCY.COLLABORATION", "name": "Agency collaboration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency collaboration", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "AGENCY_COLLABORATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "AGENCY.SHARING", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "d0e2b725ddfdc452cc3ba750bbe8ec059c6b01ba"}, "metadata_element": {"id": "AGENCY.SHARING", "name": "Agency sharing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency sharing", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "AGENCY_SHARING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "CONTENT.SCALING.AGENCYNAME", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "f9dfa695cc5ef8cd3fafada4e44cfdaa1522d58a"}, "metadata_element": {"id": "CONTENT.SCALING.AGENCYNAME", "name": "Content Scaling agency name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Scaling agency name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENTSCALING_AGENCYNAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "container_name": "01. Ferrero Rocher", "container_type_id": "GLOBALSUBCATEGORY", "container_type_name": "L2 - SUBCATEGORY", "inherited_metadata_values": [{"id": "MARKETING_SUBCATEGORY", "tabular": false, "value_id": {"uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "originator_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "inherited_field_id": "3000ad591e09b5c75f85fc2ccbb9ebeb31b3ab78"}, "metadata_element": {"id": "MARKETING_SUBCATEGORY", "name": "SUBCATEGORY", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Mart-Ferrero-Rocher"}, "display_value": "Ferrero Rocher", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "SUBCATEGORY", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "SUBCATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "SUBCATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "tabular": true, "value_id": {"uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "originator_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "inherited_field_id": "2c751ce760d88c0e271925ea5149348106944bfa"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Subcategory Owner", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_SUBCATEGORY_OWNER_TM", "column_name": "SUBCATEGORY_OWNER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "parent_table_name": "Subcategory Owner", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "container_name": "03. Premium Chocolate", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "originator_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E06"}, "display_value": "PREMIUM CHOCOLATE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "originator_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final Approver BPS ", "values": [{"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "container_name": "00. Master Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "originator_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00. Master Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "container_name": "LOCADAPLOCCOMM - FER ROCHER 4", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "LOCADAPLOCCOMM - FER ROCHER 4"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000794"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "LOCADAPLOCCOMM_-__CQ_LAL_MLT_PRE_0000794"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local adaptation of local comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Master Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000783"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Master Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "DK"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "DK"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "SE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "FI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "NO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "IS"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "GL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2025/2026"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2797"}, "display_value": "Owner, Asset (AssetownerLoG, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2797"}, "display_value": "Owner, Asset (AssetownerLoG, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2797"}, "display_value": "Owner, Asset (AssetownerLoG, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2797"}, "display_value": "Owner, Asset (AssetownerLoG, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "A1"}, "display_value": "Local Campaign ready for localization", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ADDITIONALAPPROVER", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.LICENSING", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "d0ef653291e269a7d1ddf0ebfedd1c6ad70b1c59"}, "metadata_element": {"id": "FERRERO.FIELD.LICENSING", "name": "Campaign License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "LICENSING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}}]}, {"container_id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "container_name": "25-26", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "originator_id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "25-26"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "container_name": "02. Campaign", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "originator_id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "02. Campaign"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "f31042cfc487f066486c46527c076b8ee6618ceb", "container_name": "01. Standard", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "f31042cfc487f066486c46527c076b8ee6618ceb", "originator_id": "f31042cfc487f066486c46527c076b8ee6618ceb", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "01. Standard"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "container_name": "02. Sweden", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "originator_id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "02. Sweden"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "container_name": "SCANDINAVIA", "container_type_id": "GLOBALMARKETUNIT", "container_type_name": "L6 - MARKET UNIT", "inherited_metadata_values": [{"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "24a6615bcce9adc5a098c76c29b8e8baba61a9a3"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E22"}, "display_value": "SCANDINAVIA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "13063087b81ea172db42e69ed8e8fa013cd5bfe0"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Local SCANDINAVIA Editable Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "bf49ba2a40d0d0dccee4d5de7381659b106dd89a"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Premium Chocolate Local SCANDINAVIA Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "8e4d311466783d8215a38b08bee3cb2b3bfcf40f"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "9e88b5726590ab30642999a28a301e3fbcebc762"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "name": "Published Security Policy - Restricted Visibility", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Security Policy - Restricted Visibility", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_VISIBILITY_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "3c0070e420882e3e18f6097811cb60a67239003b"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local SCANDINAVIA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "7f3c1933b61e900457ea6e2aab750303882873d4"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "b0c960759e48c0fcdcb650417179a614da95e866"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Local SCANDINAVIA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "6f603fcc63415e266dc35cf2314d31357a2966bf"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "3c12728b06ecfafeeb74482ea7b7296b180765f9"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "dc9b8ffa0591a1b2956c07fa5dc10ff477c84f4e"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "495fa4f08769a021cfa907dfb7a903fade9bd19a"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "e3b647e172a89e1e7cbdd2964faff1bca8dcf520"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "6870cca056b54cd400a9fbd4fe75513e69cedcdd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "RMMC", "values": [{"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "container_name": "01. MC - Rocher", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "bb01cf85444107f22341d2b88421f0cbaade0bf9"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E023"}, "display_value": "MULTI COUNTRY EUROPE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "8f497ce53d23899c7c09aa5a7ca69c9f55c3a62d"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E22"}, "display_value": "SCANDINAVIA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "ca70a6d55e4277ecbef2a01a593c614501cbcf74"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "3e9d669ab1047383d0416ba40af75744148c94c8"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "0e241fc386dcd91baa31a409e297169fe4a352c2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "2e3e0f2be0e487b540d9b63cb8c0e9ed9c6b1bb6"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "359c98154f230a60acc6b4eb048e129411d7a778"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "b3698893fc223e8371f4e4c0d560d0536c724a09"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "e92f9f10c0c29dda8261218c2c72a0baa66472f2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "15dff42c3b196ba3ae5b3c2ea33f00e347e6f654"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "0ae044cd9dddf86cd9406c9edc3996b18c430be0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "name": "AMMC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AMMC", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LOCAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "7806fed6127b50c21f6b03e1f7b63f3dedc1e8d1"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "RMMC", "values": [{"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "4c8a2d6e178638bfacfeaf3f7f6f1000304693a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "name": "Product Asset Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Asset Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCT_ASSET_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of local comm"}, "display_value": "Local adaptation of local comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of local comm"}, "display_value": "Local adaptation of local comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "5a1ae26558efdc03336c0df838dd9e7c2a51c687"}, "metadata_element": {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "name": "Market Unit", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market Unit", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETUNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "MARKET_UNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "container_name": "Read Only", "container_type_id": "L3 - Agency Structure", "container_type_name": "L3 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "55530f721f18c847e35d7c828edf53461b5014b0"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "330bb6f68316aab5c45f9fe34e047cce573c67cc"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "name": "Agency Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "AGENCY_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "e30e90d694f9935d4c15c4c78891beed8853a272"}, "metadata_element": {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "name": "Published Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "PUBLISHED_ASSET_SP_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "23b155c32d5c6142914b41458234c100812bbec8", "container_name": "Oliver", "container_type_id": "L2 - Agency Structure", "container_type_name": "L2 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.AGENCY", "tabular": false, "value_id": {"uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "originator_id": "23b155c32d5c6142914b41458234c100812bbec8", "inherited_field_id": "48fcbc397986aca5bb8722a95197dd0a46f19b4e"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_AGENCY", "column_name": "AGENCY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "container_name": "Z - Exchange", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "YY"}, "display_value": "AGENCIES", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Final Approver BPS ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}], "asset_lock_state_last_update_date": "2026-01-14T14:27:01.9+01:00", "content_lock_state_last_update_date": "2026-01-14T14:23:42.103+01:00"}, "language_code": null, "language_name": null, "subject_title": null, "file_extension": ".jpg", "asset_type_name": null, "file_size_bytes": null, "duration_seconds": null, "upload_directory": "c61cb01650b9ca8e8a9e27f9d47a5f8273753ed9", "local_campaign_id": "C000000794", "original_filename": "download", "global_master_folder_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "global_master_campaign_id": "C000000783"} 2026-01-16 20:41:18.90633 \N 13 ij0ygz master_asset_created {"id": 13, "tags": null, "status": "active", "width_px": null, "height_px": null, "mime_type": "image/jpeg", "asset_type": null, "brand_code": null, "brand_name": null, "categories": null, "created_at": "2026-01-16T20:41:22.194138", "deleted_at": null, "is_deleted": false, "updated_at": "2026-01-16T20:41:22.194138", "description": "Box File ID: 2105209473028\\nBox URL: https://app.box.com/file/2105209473028\\nDAM Asset ID: 85a99b184653d78906eccc8934a67e5ed4bcd9e9", "ingested_at": "2026-01-16T20:41:22.194138", "ingested_by": null, "opentext_id": "85a99b184653d78906eccc8934a67e5ed4bcd9e9", "tracking_id": "ij0ygz", "aspect_ratio": null, "country_code": null, "country_name": null, "full_metadata": {"name": "images.jpg", "links": {"links": [], "source_id": "85a99b184653d78906eccc8934a67e5ed4bcd9e9"}, "locked": false, "deleted": false, "expired": false, "version": 1, "asset_id": "85a99b184653d78906eccc8934a67e5ed4bcd9e9", "metadata": {"id": "ECOMMERCE", "name": "Marketing Asset", "type": "com.artesia.metadata.MetadataModel", "legacy_id": 116, "metadata_element_list": [{"id": "FERRERO.CATEGORY.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200054, "metadata_element_list": [{"id": "FERRERO.FIELD.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Status", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.CONTENT_STATUS", "edit_type": "COMBO_NOTNULL", "facetable": false, "searchable": true, "table_name": "FERRERO_CONTENT_STATUS_MD", "column_name": "CONTENT_STATUS", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9215, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRER.CATEGORY.ASSET_INFO", "name": "Asset Info", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200022, "metadata_element_list": [{"id": "FERRERO.FIELD.MKTG.ASSET TYPE", "name": "Asset Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.ASSETTYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.FISCAL YEAR", "name": "Release Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2026/2027"}, "display_value": "2026/2027", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Release Fiscal Year", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_DOMAIN_FISCAL_YEAR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "FISCAL__YEAR", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "name": "Main Languages", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1210, "metadata_element_list": [{"id": "MAIN_LANGUAGES", "name": "MAIN LANGUAGES", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "MAIN LANGUAGES", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MAIN LAGUAGES_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MAIN_LANGUAGE_TABLE", "column_name": "MAIN_LANGUAGE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "parent_table_name": "Main Languages", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.ASSET DESCRIPTION", "name": "Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Description", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "DESCR", "data_length": 249, "description": "Descriptive information", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.FLAVOUR", "name": "Flavour", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Flavour", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.FLAVOUR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FLAVOUR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.SIZE", "name": "Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Size", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.SIZE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SIZE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1241, "metadata_element_list": [{"id": "FERRERO.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Compliance", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ASSETCOMPLIANCE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_COMPLIANCE", "column_name": "ASSET_COMPLIANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "parent_table_name": "Asset Compliance", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.TAG DETAILS", "name": "Tag Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 118, "metadata_element_list": [{"id": "ARTESIA.FIELD.TAG", "name": "Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "food", "field_value": {"type": "string", "value": "food"}, "display_value": "food", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Tag", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "food", "field_value": {"type": "string", "value": "food"}, "display_value": "food", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "slot machine", "field_value": {"type": "string", "value": "slot machine"}, "display_value": "slot machine", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.TAGS", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "OTMM_TAGS", "column_name": "TAG", "data_length": 80, "description": "Tag", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG CONFIDENCE", "name": "Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 83.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Confidence", "values": [{"value": {"type": "decimal", "value": 83.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 72.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Confidence", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG TYPE", "name": "Tag Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Tag Type", "values": [{"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "TAG_TYPE", "data_length": 10, "description": "Tag Type", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED BY", "name": "Associated By", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Associated By", "values": [{"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_BY", "data_length": 10, "description": "Associated By", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED DATE", "name": "Associated Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-14T14:24:31.323+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Associated Date", "values": [{"value": {"type": "dateTime", "value": "2026-01-14T14:24:31.323+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2026-01-14T14:24:31.323+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_DATE", "data_length": 10, "description": "Associated Date", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.STATE", "name": "Global/Local", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "GLOBAL"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO_NOTNULL", "facetable": true, "searchable": true, "table_name": "FERRERO_IC_ASSET_DETAILS", "column_name": "ASSET_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.ASPECT RATIO", "name": "Aspect Ratio (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio (Marketing)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASPECT_RATIO", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASPECT_RATIO", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "name": "Tag (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1222, "metadata_element_list": [{"id": "MARKETING_TAG", "name": "Marketing Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Marketing Tag", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.DOMAIN.TAG", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TAG_MARKET", "column_name": "TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "parent_table_name": "Tag (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.TAGS", "name": "Auto-Generated Tags", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Auto-Generated Tags", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "AUTO_GENERATED_TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CERTIFIER", "name": "Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approver", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.MARKETING.FIELD.APPROVAL DATE", "name": "Approval__Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approval__Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.LEGAL APPROVAL DATE", "name": "Legal Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CERTIFIER", "name": "IA&CC Certifier", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Certifier", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CC APPROVAL DATE", "name": "IA&CC Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "name": "Extended Approval", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1230, "metadata_element_list": [{"id": "FERRERO.FIELD.EXTENDED.APPROVAL", "name": "Extended Approval required by:", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended Approval required by:", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COMMENTS", "name": "Comment", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comment", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "COMMENTS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.DATE", "name": "Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USERS", "name": "User ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "User ID", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "USERS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXTENDED.JOBID", "name": "Extended JobID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended JobID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.MIGRATION.INDEX", "name": "Migration Index", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Migration Index", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MIGRATION.INDEX", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MIGRATION_INDEX", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "FERRERO_MARKET_MARKETING_CREATOR", "name": "Marketing Creator", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Marketing Creator", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.CREATOR", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MARKETING_CREATOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "ARTESIA.FIELD.IS LATEST VERSION", "name": "Is Latest Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Y"}, "display_value": "Yes", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Is Latest Version", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.YES_NO", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "IS_LATEST_VERSION", "data_length": 1, "description": "Is this the latest version? (Y/N)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET VERSION", "name": "Asset Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 1}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Version", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "INTEGER", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "VERSION", "data_length": 12, "description": "Version number of asset", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET_ID", "name": "Asset ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "85a99b184653d78906eccc8934a67e5ed4bcd9e9"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset ID", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "LOGICAL_UOI_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.ECOMMERCE STATUS", "name": "Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "PUBLISHED"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Status", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "ASSET_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CREATOR", "name": "Uploaded by", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Uploaded by", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_USER_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.FIELD.CREATION DATE", "name": "Upload Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-14T14:23:41.743+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Upload Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_DT", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.ASSET NAME", "name": "Asset Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "images.jpg"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Name", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "description": "Original name of master object", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.CONTENT TYPE", "name": "Content Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "BITMAP"}, "display_value": "Image", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Type", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.CONTENT_TYPES", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "CONTENT_TYPE", "data_length": 8, "description": "Content Type", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.MIME TYPE", "name": "File Extension", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "image/jpeg"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Extension", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_MIME_TYPE", "data_length": 80, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.FILE.SIZE", "name": "File Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "long", "value": 11710}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Size", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "LONG", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_SIZE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP RESOLUTION", "name": "Bitmap Resolution", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 72}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Resolution", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_RESOLUTION", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP WIDTH", "name": "Bitmap Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 225}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Width", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_WIDTH", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP HEIGHT", "name": "Bitmap Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 225}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Height", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_HEIGHT", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "name": "Approval Metadata", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1249, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.DEPARTMENT", "name": "Department", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Department", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "DEPARTMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.CERTIFIER", "name": "Certifier", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Certifier", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL DATE", "name": "Approval Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Approval Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "APPROVAL_DATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.COMMENT", "name": "Comments", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comments", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "COMMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.TYPE OF APPROVAL", "name": "Type of Approval", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Approval", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "TYPE_OF_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL STATUS", "name": "Approval Status", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Approval Status", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "APPROVAL_STATUS", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.SUB JOBID", "name": "Sub Job Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sub Job Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.VIDEO.BIT_RATE", "name": "Bitrate", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitrate", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "BIT_RATE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.EMBEDDED.FIELD.DURATION", "name": "Duration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Duration", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "DURATION_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.ASPECT RATIO", "name": "Aspect Ratio", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "ASPECT_RATIO", "data_length": 30, "displayable": false, "instructions": "ASPECT_RATIO", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME HEIGHT", "name": "Frame Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Height", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_HEIGHT", "data_length": 12, "displayable": true, "instructions": "FRAME_HEIGHT", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME WIDTH", "name": "Frame Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Width", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_WIDTH", "data_length": 12, "displayable": true, "instructions": "FRAME_WIDTH", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.ASPECT.RATIO.POC", "name": "Aspect Ratio(POC)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "1:1"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio(POC)", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASPECT_RATIO_TABLE", "column_name": "ASPECT_RATIO", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "PRODUCT.DETAILS", "name": "Product Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200029, "metadata_element_list": [{"id": "FERRERO.TABLE.EANCODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1208, "metadata_element_list": [{"id": "EAN_CODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "EAN CODE/ 77 CODE", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "EAN.CODE", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "EAN_CODE", "column_name": "EAN_CODE_DESCRIPTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "COUNTRY", "name": "COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "EAN_CODE", "column_name": "COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKETING.ADVANCE.PRODUCT.LINK", "name": "Asset-to-product relation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset-to-product relation", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_MARKETING_ADVANCE_PRODUCT_LINK", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ADVANCE_PRODUCT_LINK", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 10182, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.SUB BRAND", "name": "Sub-Brands", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Sub-Brands", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.SUBBRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "SUB_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT WEIGHT", "name": "Product Weight", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Weight", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_WEIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.CONSUMER UNIT PACKAGING", "name": "Consumer Unit Packaging", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Consumer Unit Packaging", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PACK", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "CONSUMER_UNIT_PACKAGING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.4 DIGIT CODE", "name": "4 Digit Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "4 Digit Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "DIGITCODE", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERREO.ECOM.RETAILER_SPECIFIC_FIELD", "name": "Retailer Specific", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Retailer Specific", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "RETAILER_SPECIFIC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "cascading_group_id": "FERRERO.RETAILER.SPECIFIC", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY START PERIOD", "name": "Asset validity start period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity start period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_STARTING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY END PERIOD", "name": "Asset validity end period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity end period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_ENDING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.ASSET.NAMING.CONVENTION", "name": "Does asset need GS1 naming convention", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Does asset need GS1 naming convention", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASSETNAMINGCONVENTION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_NAMING_CONVENTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9515, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT VIEW", "name": "Product View", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product View", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT VIEW", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_VIEW", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT ANGLE", "name": "Product Angle", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Angle", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT.ANGLE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_ANGLE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT STATE", "name": "Product State", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product State", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT STATE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PROMOTION ID", "name": "Promo ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Promo ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROMO_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.BUSINESS.ASSET TYPE", "name": "Asset Type (eDAM)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Angled view", "field_value": {"type": "string", "value": "angledview"}, "display_value": "ANGLED VIEW", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Type (eDAM)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "OTMM.DOMAIN.OTMM_ASSETTYPE_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_BUSINESS_INFO", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7244, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200048, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.AGENCY NAME", "name": "Agency Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "0000000001"}, "display_value": "ATest", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Agency Name", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.AGENCY_NAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AGENCY_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7336, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.CREATIX", "name": "CreativeX", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200059, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.CREATIVEX", "name": "Confidence", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1245, "metadata_element_list": [{"id": "FERRERO.TAB.FIELD.CREATIVEX", "name": "Platform > Rating (%)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Platform > Rating (%)", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_CREATIVEX", "column_name": "CREATIVEX_NEW", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CREATIVEX", "parent_table_name": "Confidence", "cascading_group_id": "FERRERO.CREATIVEX.CHAR", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.CREATIVEX LINK", "name": "CreativeX Hyperlink", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "CreativeX Hyperlink", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_CREATIVEX", "column_name": "CREATIVE_LINK", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.IP_RIGHTS", "name": "IP Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200046, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.IPRIGHT", "name": "IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IP Rights", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.IPRIGHTS", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IP_RIGHTS", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.BUYOUT", "name": "Touchpoint Scope", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Touchpoint Scope", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.TOTAL_BUYOUT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TOTAL_BUYOUT", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.FERRERO PROPERTY", "name": "Ferrero Property", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Ferrero Property", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.FERRERO_PROPERTY", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FERRERO_PROPERTY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200035, "metadata_element_list": [{"id": "FERRERO.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1209, "metadata_element_list": [{"id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "name": "IP Coverage, Area, Region & Market Unit", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Coverage, Area, Region & Market Unit", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "IPCOVERAGE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "cascading_group_id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHT TYPE", "name": "Copyright Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHT_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.MEDIATYPE", "name": "Media Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Media Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MEDIA_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "MEDIA_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE FROM", "name": "Expiration of Usage - From", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - From", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_FROM", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE TO", "name": "Expiration of Usage - To", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - To", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_TO", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO._DURATION", "name": "IP Duration", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Duration", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "ECOM_DURATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHTTYPE DETAILS", "name": "Copyright Type Details", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type Details", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHTTYPE_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 6, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.MARKET.VID_STAT_RIGHT", "name": "Video & Static Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200047, "metadata_element_list": [{"id": "FERRERO.MARKET.VID_N_STAT", "name": "Video and Static Right", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video and Static Right", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VID_AND_STAT_RIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.VID_STAT_TYPE", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1221, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.TYPE_VID", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Video & Static Right", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TYPE_VID_STAT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_MARKET_TYPE_VID_STAT", "column_name": "TYPE_OF_VIDEO_STATIC_RIGHT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.VID_STAT_TYPE", "parent_table_name": "Type of Video & Static Right", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKET.PROD_COMPANY", "name": "Production House", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Production House", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.PRODUCT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200050, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.LICENSIN", "name": "Licensing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Licensing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSING", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "cascading_group_id": "FERRERO.MARKET.CG.LICENSE", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.SPOT_DETAILS", "name": "Spot Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200049, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.SPOT_VERSION", "name": "Spot Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Version", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_VERSION", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_VERSION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.SPOT_TYPE", "name": "Spot Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_TYPE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.DIRECTOR_NAME", "name": "Director Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Director Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "DIRECTOR_NAME", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VIDEO_POST_PROD_COMPANY", "name": "Video Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VID_POST_PROD_CONTACT", "name": "Video Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_COMPANY", "name": "Audio Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_CONTACT", "name": "Audio Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.BROADCASTER.CODE", "name": "Broadcaster Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Broadcaster Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BROADCASTER_CODE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.TECHNICAL_VALIDATION", "name": "Technical Validation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Technical Validation", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TECHNICAL_VALIDATION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS", "name": "Media Analysis", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1002, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "name": "Categories", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 105, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY NAME", "name": "Category Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "others_"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Category Name", "values": [{"value": {"type": "string", "value": "others_"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "outdoor_"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "text_menu"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "NAME", "data_length": 100, "description": "Category Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY CONFIDENCE", "name": "Category Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 3.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Category Confidence", "values": [{"value": {"type": "decimal", "value": 3.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 0.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 26.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "CONFIDENCE", "data_length": 10, "description": "Category Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES COUNT", "name": "Faces Count", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Faces Count", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACECOUNT", "column_name": "COUNT", "data_length": 10, "description": "Faces Count", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "name": "Face Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 106, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME", "name": "Recognized Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME", "data_length": 2000, "description": "Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME CONFIDENCE", "name": "Recognized Name Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME_CONFIDENCE", "data_length": 10, "description": "Name Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE", "name": "Person Age", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE", "data_length": 10, "description": "Person Age", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE CONFIDENCE", "name": "Person Age Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Person Age Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_CONFIDENCE", "data_length": 10, "description": "Person Age Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER", "name": "Gender", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Gender", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.GENDER", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER", "data_length": 40, "description": "Gender", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER CONFIDENCE", "name": "Gender Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Gender Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER_CONFIDENCE", "data_length": 10, "description": "Gender Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.FACE COORDS", "name": "Face Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "FACE_COORDS", "data_length": 200, "description": "Face Coordinates like postion, height,width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE GROUP", "name": "Person Age Group", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age Group", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.AGE GROUP", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_GROUP", "data_length": 10, "description": "Person Age Group", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "name": "Safe Content", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 107, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONTENT TYPE", "name": "Safe Content Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Safe Content Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENTS", "data_length": 20, "description": "Safe Content Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONFIDENCE", "name": "Content Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Content Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENT_CONFIDENCE", "data_length": 10, "description": "Safe Content Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "name": "Colors", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 108, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.NAME", "name": "Color", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Brown"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Color", "values": [{"value": {"type": "string", "value": "Brown"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "Black"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "NAME", "data_length": 25, "description": "COLOR", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.PROPORTION", "name": "Color Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Color Confidence", "values": [{"is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "PROPORTION", "data_length": 10, "description": "Proportion", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.FOREGROUND", "name": "Foreground Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Brown"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Foreground Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "FOREGROUND", "data_length": 25, "description": "Foreground Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.BACKGROUND", "name": "Background Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Black"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Background Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "BACKGROUND", "data_length": 25, "description": "Background Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.ISBW", "name": "Is Black and White", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "false"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Is Black and White", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "ISBW", "data_length": 10, "description": "Is Black and White", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "name": "Captions", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 109, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION TEXT", "name": "Caption Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Caption Text", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "TEXT", "data_length": 2000, "description": "Caption Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION CONFIDENCE", "name": "Caption Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Caption Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "CAPTION_CONFIDENCE", "data_length": 10, "description": "Caption Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "name": "Image Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 110, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.IMAGE TYPE", "name": "Analysis Image Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Analysis Image Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_IMAGE_TYPE", "column_name": "TYPE", "data_length": 100, "description": "Image Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "parent_table_name": "Image Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.DATE", "name": "Date: Media Analysis", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-14T14:24:31+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date: Media Analysis", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MEDIA_ANALYSIS_DATE", "data_length": 25, "description": "Date Media Analysis was done on the asset.", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR LANGUAGE", "name": "Image Text Language", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "unk"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Image Text Language", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "LANGUAGE", "data_length": 10, "description": "OCR data language", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR TEXT", "name": "Text on Image", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Text on Image", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "TEXT", "data_length": 4000, "description": "OCR Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "name": "Embedded Brand Info", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 119, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.NAME", "name": "Embedded Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Embedded Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Embedded Brand Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.CONFIDENCE", "name": "Embedded Brand Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Embedded Brand Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Embedded Brand Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.COORDINATES", "name": "Embedded Brand Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Embedded Brand Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "COORDINATES", "data_length": 200, "description": "Embedded Brand Coordinates like position, height, width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "HYBRIS.PRODUCT.INFO", "name": "PIM Item Reference", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200027, "metadata_element_list": [{"id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "name": "Hybris Item Reference", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1206, "metadata_element_list": [{"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ID", "name": "Hybris Item ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ID", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT TAG NAME", "name": "Hybris Assignment Label", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Assignment Label", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_TAG_NAME", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ATTRIBUTE NAME", "name": "Hybris Attribute Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Attribute Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ATTRIBUTE_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT CATALOG NAME", "name": "Hybris Catalog Mnemonic", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Catalog Mnemonic", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_CATALOG_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT PK", "name": "Hybris Item PK", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item PK", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_PK", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.SYSTEM ID", "name": "Hybris System ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris System ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "SYSTEM_ID", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.ASSIGNED", "name": "Assigned", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Assigned", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "ASSIGNED", "column_name": "ASSIGNED", "data_length": 38, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PIM TYPE", "name": "PIM Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "PIM Type", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_PIM_TYPE", "column_name": "PIM_TYPE", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS VIDEO", "name": "Media Analysis Video", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1003, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "name": "Labels", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 113, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.ID", "name": "Label Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "ID", "data_length": 40, "description": "Label Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.NAME", "name": "Label Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "NAME", "data_length": 40, "description": "Label Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.APPEARANCES", "name": "Label Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "APPEARANCES", "data_length": 0, "description": "Label Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "name": "Sentiments", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 114, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.ID", "name": "Sentiment Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "ID", "data_length": 40, "description": "Sentiment Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.NAME", "name": "Sentiment Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "NAME", "data_length": 40, "description": "Sentiment Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.APPEARANCES", "name": "Sentiment Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "APPEARANCES", "data_length": 0, "description": "Sentiment Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.SEEN.DURATION.RATIO", "name": "Sentiment Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Sentiment Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "name": "Keywords", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 115, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.ID", "name": "Keyword Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "ID", "data_length": 40, "description": "Keyword Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.NAME", "name": "Keyword Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "NAME", "data_length": 40, "description": "Keyword Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.APPEARANCES", "name": "Keyword Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Keyword Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "name": "Faces", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 111, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.ID", "name": "Face Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "ID", "data_length": 40, "description": "Face Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.NAME", "name": "Face Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "NAME", "data_length": 40, "description": "Face Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.TITLE", "name": "Face Title", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Title", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "TITLE", "data_length": 249, "description": "Face Title", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.DESCRIPTION", "name": "Face Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Face Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.APPEARANCES", "name": "Face Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "APPEARANCES", "data_length": 0, "description": "Face Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SPEAKER.FACE.ID", "name": "Video Speaker Object Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Speaker Object Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "THUMBNAIL_OBJECT_ID", "data_length": 40, "description": "Video Speaker Object Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.SEEN.DURATION.RATIO", "name": "Face Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "SEEN_DURATION_RATIO", "data_length": 20, "description": "Face Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "name": "Brands", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 112, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.ID", "name": "Video Brand Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "ID", "data_length": 40, "description": "Brand Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.NAME", "name": "Video Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Brand Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.DESCRIPTION", "name": "Video Brand Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Brand Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.WIKIURL", "name": "Video Brand Wiki URL", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Wiki URL", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "WIKIURL", "data_length": 200, "description": "Brand Wiki URL", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.APPEARANCES", "name": "Video Brand Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Brand Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.SEEN.DURATION.RATIO", "name": "Video Brand Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Brand Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "name": "Speeches", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 116, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.ID", "name": "SpeechText Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "SpeechText Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "ID", "data_length": 40, "description": "SpeechText Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXT", "name": "Speech Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Text", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXT", "data_length": 1000, "description": "Speech Text", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXTTYPE", "name": "Speech Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXTTYPE", "data_length": 40, "description": "Speech Type", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.START TIME", "name": "Speech Start Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Start Time", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "START_TIME", "data_length": 40, "description": "Speech Start Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.END TIME", "name": "Speech End Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech End Time", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "END_TIME", "data_length": 40, "description": "Speech End Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "name": "Speakers", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 122, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.ID", "name": "Speaker Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "ID", "data_length": 40, "description": "Speaker Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.NAME", "name": "Speaker Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "NAME", "data_length": 100, "description": "Speaker Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.APPEARANCES", "name": "Speaker Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "APPEARANCES", "data_length": 0, "description": "Speaker Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.FIELDGROUP.LOCALASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200057, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1239, "metadata_element_list": [{"id": "FERRERO.FIELD.COUNTRY", "name": "LOCAL COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "LOCAL COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USER", "name": "USER", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "USER", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_USER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.ASSOCIATION", "name": "TYPE OF ASSOCIATION", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "TYPE OF ASSOCIATION", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_ASSOCIATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.VALUE", "name": "VALUE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "VALUE", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_VALUE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "CG.CATEGORY.FADEL ASSET INFORMATION", "name": "Rights Asset Information", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200064, "metadata_element_list": [{"id": "CG.FIELD.RIGHTS MANAGED", "name": "Fadel IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fadel IP Rights", "enabled": true, "options": "", "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_RIGHTS_MANAGED_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGED", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.NEEDS RIGHTS MANAGEMENT", "name": "Needs Rights Management", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "10", "field_value": {"type": "string", "value": "N"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Needs Rights Management", "enabled": true, "options": "", "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_NEEDS_RIGHTS_MANAGEMENT_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "NEEDS_RIGHTS_MANAGEMENT", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.RIGHTS MANAGEMENT DESCRIPTION", "name": "Rights Management Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Rights Management Description", "enabled": true, "options": "", "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGEMENT_DESCRIPTION", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.RIGHTS MANAGEMENT STATUS", "name": "Rights Management Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Rights Management Status", "enabled": true, "options": "", "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_RIGHTS_MANAGEMENT_STATUS_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGEMENT_STATUS", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.FORCE SYNC", "name": "Force Sync", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Force Sync", "enabled": true, "options": "", "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_FORCE_SYNC_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "FORCE_SYNC", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.LAST SYNC TIME", "name": "Date of last data sync", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date of last data sync", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "LAST_SYNC_TIME", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "CG.CATEGORY.FADEL RIGHTS INFORMATION", "name": "Rights Information", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200065, "metadata_element_list": [{"id": "CG.TABLE.RIGHTS", "name": "Rights", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1256, "metadata_element_list": [{"id": "CG.FIELD.RIGHT TERRITORIES", "name": "Territory", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Territory", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "TERRITORY", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT USES", "name": "Use", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Use", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "USAGE", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT IN DATE", "name": "In Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "In Date", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "IN_DATE", "data_length": 10, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT OUT DATE", "name": "Out Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Out Date", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "OUT_DATE", "data_length": 10, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "saved_values_behavior_mode": 0}]}]}, {"id": "CG.CATEGORY.FADEL AGREEMENTS AND PARTIES", "name": "Agreements and Parties", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200067, "metadata_element_list": [{"id": "CG.TABLE.PARTIES.AGREEMENTS VW", "name": "Customized Table Parties and Agreements", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1258, "metadata_element_list": [{"id": "CG.FIELD.AGREEMENT NUMBER VW", "name": "Agreement Number ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Number ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_NUMBER", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT DESCRIPTION VW", "name": "Agreement Description ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Description ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_DESCRIPTION", "data_length": 2000, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT START DATE VW", "name": "Agreement Start Date ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Start Date ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_START_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT END DATE VW", "name": "Agreement End Date ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement End Date ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_END_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY NAME VW", "name": "Party Name ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Name ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_NAME", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY ROLE VW", "name": "Party Role ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Role ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_ROLE", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY EMAIL ADDRESS VW", "name": "Party Email Address ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Email Address ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_EMAIL_ADDRESS", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY PHONE NUMBER VW", "name": "Party Phone Number ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Phone Number ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_PHONE_NUMBER", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PRIMARY PARTY CONTACT VW", "name": "Primary Party Contact ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Primary Party Contact ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PRIMARY_PARTY_CONTACT", "data_length": 200, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 8, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}], "has_multilingual_fields": false}, "mime_type": "image/jpeg", "path_list": [{"parents": [{"id": "d4d9835db002b9992125246f2abb7117c99ab016", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "d4d9835db002b9992125246f2abb7117c99ab016", "sequence_number": 0}, {"id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "name": "MASTER CAMP FER ROCHER 12.01.2", "container_state": "NORMAL", "original_uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "sequence_number": 0}, {"id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "name": "01. DE - Rocher ", "container_state": "NORMAL", "original_uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "sequence_number": 0}, {"id": "091216b59cad7f1ea815164c26db27e350c54023", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "sequence_number": 0}, {"id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "name": "01. Rocher", "container_state": "NORMAL", "original_uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "sequence_number": 0}, {"id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "name": "01. Ferrero Rocher", "container_state": "NORMAL", "original_uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "sequence_number": 0}, {"id": "93b0968611de11160ed068afeb9930b9965bd5ff", "name": "03. Premium Chocolate", "container_state": "NORMAL", "original_uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "sequence_number": 0}], "complete": true, "sequence_number": 1, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "sequence_number": 0}, {"id": "4b05a895330aa2fb6046f59731aba5dd93858431", "name": "LOCADAPLOCCOMM - FER ROCHER 4", "container_state": "NORMAL", "original_uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "sequence_number": 0}, {"id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "name": "25-26", "container_state": "NORMAL", "original_uoi_id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "sequence_number": 0}, {"id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "name": "02. Campaign", "container_state": "NORMAL", "original_uoi_id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "sequence_number": 0}, {"id": "f31042cfc487f066486c46527c076b8ee6618ceb", "name": "01. Standard", "container_state": "NORMAL", "original_uoi_id": "f31042cfc487f066486c46527c076b8ee6618ceb", "sequence_number": 0}, {"id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "name": "02. Sweden", "container_state": "NORMAL", "original_uoi_id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "sequence_number": 0}, {"id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "name": "SCANDINAVIA", "container_state": "NORMAL", "original_uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "sequence_number": 0}, {"id": "f2649309eb916c5c25bb309e3db061042c3eecca", "name": "01. MC - Rocher", "container_state": "NORMAL", "original_uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "sequence_number": 0}, {"id": "091216b59cad7f1ea815164c26db27e350c54023", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "sequence_number": 0}, {"id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "name": "01. Rocher", "container_state": "NORMAL", "original_uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "sequence_number": 0}, {"id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "name": "01. Ferrero Rocher", "container_state": "NORMAL", "original_uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "sequence_number": 0}, {"id": "93b0968611de11160ed068afeb9930b9965bd5ff", "name": "03. Premium Chocolate", "container_state": "NORMAL", "original_uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "sequence_number": 0}], "complete": true, "sequence_number": 1, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "d4d9835db002b9992125246f2abb7117c99ab016", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "d4d9835db002b9992125246f2abb7117c99ab016", "sequence_number": 0}, {"id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "name": "MASTER CAMP FER ROCHER 12.01.2", "container_state": "NORMAL", "original_uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "sequence_number": 0}, {"id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "name": "01. DE - Rocher ", "container_state": "NORMAL", "original_uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "sequence_number": 0}, {"id": "bfbc248a12a4bf0382406620f0d9ec41ff42e35e", "name": "01. Ferrero Rocher", "container_state": "NORMAL", "original_uoi_id": "bfbc248a12a4bf0382406620f0d9ec41ff42e35e", "sequence_number": 0}, {"id": "3d7debea6815ae46c9598191b1c645007666292a", "name": "03 . Premium Chocolate", "container_state": "NORMAL", "original_uoi_id": "3d7debea6815ae46c9598191b1c645007666292a", "sequence_number": 0}, {"id": "c0bb10be2b8f96ee4d27a2dfb7e0d03de68cf114", "name": "DE", "container_state": "NORMAL", "original_uoi_id": "c0bb10be2b8f96ee4d27a2dfb7e0d03de68cf114", "sequence_number": 0}, {"id": "b124e1ed196028bdd0e2c093e28078ca8d9ad462", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "b124e1ed196028bdd0e2c093e28078ca8d9ad462", "sequence_number": 0}, {"id": "68ce80e8c8a30badb82dabfd823886a6fa6fe309", "name": "Y - Geography", "container_state": "NORMAL", "original_uoi_id": "68ce80e8c8a30badb82dabfd823886a6fa6fe309", "sequence_number": 0}], "complete": true, "sequence_number": 1, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "sequence_number": 0}, {"id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "name": "Read Only", "container_state": "NORMAL", "original_uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "sequence_number": 0}, {"id": "23b155c32d5c6142914b41458234c100812bbec8", "name": "Oliver", "container_state": "NORMAL", "original_uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "sequence_number": 0}, {"id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "name": "Z - Exchange", "container_state": "NORMAL", "original_uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "sequence_number": 0}], "complete": true, "sequence_number": 1, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}], "creator_id": "1003", "asset_state": "NORMAL", "checked_out": false, "folder_path": "", "content_size": 11710, "content_type": "BITMAP", "content_state": "NORMAL", "date_imported": "2026-01-14T14:23:41.743+01:00", "import_job_id": 225736, "subscribed_to": false, "collection_ids": [], "latest_version": true, "legacy_model_id": 116, "content_editable": true, "import_user_name": "bizAdmin", "date_last_updated": "2026-01-14T14:27:26.563+01:00", "metadata_model_id": "ECOMMERCE", "original_asset_id": "85a99b184653d78906eccc8934a67e5ed4bcd9e9", "rendition_content": {"preview_content": {"id": "e2d4cf15ef6d49db983e84862db5de2f0a71489b", "url": "/otmmapi/v6/renditions/e2d4cf15ef6d49db983e84862db5de2f0a71489b", "name": "images-S.png", "width": 225, "height": 225, "mime_type": "image/png", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "PREVIEW", "content_path": "data\\\\repository\\\\screen\\\\vol0\\\\186\\\\images-S_e2d4cf15ef6d49db983e84862db5de2f0a71489b.png", "content_size": 86752, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "thumbnail_content": {"id": "59f031c0ae0f40304470477eb86a29a93d8822c5", "url": "/otmmapi/v6/renditions/59f031c0ae0f40304470477eb86a29a93d8822c5", "name": "images-T.png", "width": 225, "height": 225, "mime_type": "image/png", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "THUMBNAIL", "content_path": "data\\\\repository\\\\thumb\\\\vol0\\\\201\\\\images-T_59f031c0ae0f40304470477eb86a29a93d8822c5.png", "content_size": 86752, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_content_info": {"master_content": {"id": "54b52b6e3712943efccbb09320095372e7ded965", "url": "/otmmapi/v6/renditions/54b52b6e3712943efccbb09320095372e7ded965", "name": "images.jpg", "width": 225, "height": 225, "mime_type": "image/jpeg", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\227\\\\images_54b52b6e3712943efccbb09320095372e7ded965.jpg", "content_size": 11710, "unit_of_size": "BYTES", "content_checksum": "27e06263333fb7d367ba8ee6ab78df97", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_state_user_id": "1003", "master_content_info": {"id": "54b52b6e3712943efccbb09320095372e7ded965", "url": "/otmmapi/v6/renditions/54b52b6e3712943efccbb09320095372e7ded965", "name": "images.jpg", "width": 225, "height": 225, "mime_type": "image/jpeg", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\227\\\\images_54b52b6e3712943efccbb09320095372e7ded965.jpg", "content_size": 11710, "unit_of_size": "BYTES", "content_checksum": "27e06263333fb7d367ba8ee6ab78df97", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "delivery_service_url": "https://ppr.dam.ferrero.com/adaptivemedia/rendition?id=85a99b184653d78906eccc8934a67e5ed4bcd9e9", "product_associations": false, "security_policy_list": [{"id": 5467, "name": "Marketing Viewer", "status": "NORMAL", "created_by": "1003", "create_date": "2023-10-06T16:52:07.297+02:00", "description": "Marketing Viewer", "ownership_type": "PUBLIC"}, {"id": 9525, "name": "Premium Chocolate Local DE Editable Ferrero Rocher", "status": "NORMAL", "created_by": "1003", "create_date": "2024-11-26T10:08:39.973+01:00", "description": "Premium Chocolate Local DE Editable Ferrero Rocher", "ownership_type": "PUBLIC"}], "thumbnail_content_id": "59f031c0ae0f40304470477eb86a29a93d8822c5", "content_state_user_id": "1003", "content_state_user_name": "OTMM BusinessAdmin", "asset_lock_state_user_id": "1003", "metadata_state_user_name": "OTMM BusinessAdmin", "access_control_descriptor": {"permissions_map": {"entry": [{"key": "text.securityPolicy.permission.Custom04Permission", "value": true}, {"key": "text.securityPolicy.permission.ContentEditPermission", "value": true}, {"key": "text.securityPolicy.permission.AssetViewPermission", "value": true}, {"key": "text.securityPolicy.permission.ProjectViewPermission", "value": true}, {"key": "text.securityPolicy.permission.MembershipEditPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom03Permission", "value": true}, {"key": "text.securityPolicy.permission.MetaDataEditPermission", "value": true}, {"key": "text.securityPolicy.permission.EditParentsPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom02Permission", "value": true}, {"key": "text.securityPolicy.permission.ExportPermission", "value": true}, {"key": "text.securityPolicy.permission.SummaryViewPermission", "value": true}, {"key": "text.securityPolicy.permission.PreviewViewPermission", "value": true}, {"key": "text.securityPolicy.permission.SubscribePermission", "value": true}, {"key": "text.securityPolicy.permission.DeleteAssetPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom01Permission", "value": true}]}}, "content_lock_state_user_id": "1003", "asset_state_last_update_date": "2026-01-14T14:27:26.563+01:00", "content_lock_state_user_name": "bizAdmin", "metadata_lock_state_user_name": "bizAdmin", "content_state_last_update_date": "2026-01-14T14:23:42.017+01:00", "inherited_metadata_collections": [{"container_id": "d4d9835db002b9992125246f2abb7117c99ab016", "container_name": "05. Final Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "d4d9835db002b9992125246f2abb7117c99ab016", "originator_id": "d4d9835db002b9992125246f2abb7117c99ab016", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "05. Final Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "container_name": "MASTER CAMP FER ROCHER 12.01.2", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "MASTER CAMP FER ROCHER 12.01.2"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000783"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "MASTER_CAMP_FER_ROC_CQ_LG_DE_PRE_0000783"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local comm on global brands"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Master Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Master Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2026/2027"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "B1"}, "display_value": "Master campaign ready for re-mastering", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ADDITIONALAPPROVER", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.LICENSING", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "d0ef653291e269a7d1ddf0ebfedd1c6ad70b1c59"}, "metadata_element": {"id": "FERRERO.FIELD.LICENSING", "name": "Campaign License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "LICENSING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}}]}, {"container_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "container_name": "01. DE - Rocher ", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "bb01cf85444107f22341d2b88421f0cbaade0bf9"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E006"}, "display_value": "GERMANY", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Local DE Editable Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Premium Chocolate Local DE Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "8f497ce53d23899c7c09aa5a7ca69c9f55c3a62d"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E64"}, "display_value": "GERMANY", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "ca70a6d55e4277ecbef2a01a593c614501cbcf74"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "3e9d669ab1047383d0416ba40af75744148c94c8"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0e241fc386dcd91baa31a409e297169fe4a352c2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "2e3e0f2be0e487b540d9b63cb8c0e9ed9c6b1bb6"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "359c98154f230a60acc6b4eb048e129411d7a778"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "b3698893fc223e8371f4e4c0d560d0536c724a09"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "e92f9f10c0c29dda8261218c2c72a0baa66472f2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "15dff42c3b196ba3ae5b3c2ea33f00e347e6f654"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Extended Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0ae044cd9dddf86cd9406c9edc3996b18c430be0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "name": "AMMC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AMMC", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LOCAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "7806fed6127b50c21f6b03e1f7b63f3dedc1e8d1"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "RMMC", "values": [{"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "4c8a2d6e178638bfacfeaf3f7f6f1000304693a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "name": "Product Asset Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Product Asset Approval Ferrero Rocher Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Asset Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCT_ASSET_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local comm on global brands"}, "display_value": "Local comm on global brands", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "5a1ae26558efdc03336c0df838dd9e7c2a51c687"}, "metadata_element": {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "name": "Market Unit", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market Unit", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETUNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "MARKET_UNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "091216b59cad7f1ea815164c26db27e350c54023", "container_name": "EU", "container_type_id": "GEOGRAPHYLOCAL", "container_type_name": "L4 - GEOGRAPHY LOCAL", "inherited_metadata_values": [{"id": "FERRERO.MARKET.FOLDER.GLOBAL", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "4c4d4bf36bf8b1ace55f990e78d6332a9cb20990"}, "metadata_element": {"id": "FERRERO.MARKET.FOLDER.GLOBAL", "name": "Global/Local (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "LOCAL"}, "display_value": "Local", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local (Marketing)", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "GLOBALLOCAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_AREA", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "3dc200c993ab8263952dc6da1498026f615f45dd"}, "metadata_element": {"id": "MARKETING_AREA", "name": "AREA", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E010"}, "display_value": "EUROPE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "AREA", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "AREA", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "AREA", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "dc7749c3e113ec9e0b9e9a3840ea55673ca5e49f"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "f2d658a3829c2ea158ae70a4b4e7928bcf88f8e2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "972d0258a82de85672bd84d8af68cdb67ad3d3ca"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "1212505ad3fe4c9d7458568f3d95aeb4c4e5c37e"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "9d1dfdef55ff7a3eb03552988ddf729c7a0f5107"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "54f006eeb366121a29ee98da33d437615dcd34e0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "1fd8802010e30d44cebb2f3eb090b12ac550f97d"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "8b6e1d8f7dc3c4671cfc11a2914d838ca3ee3f3b"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "be0dc9a87262ee7fd165237b531ba3b7aa93a260"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "2f99f0f0f9e43fb34df9222c8b73a86fb78e473e"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "container_name": "01. Rocher", "container_type_id": "GLOBALBRAND", "container_type_name": "L3 - BRAND", "inherited_metadata_values": [{"id": "FERRERO.TABULAR.NEW.BRAND", "tabular": true, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "9bb1c183135f5240f09132aef59c4ea48c762381"}, "metadata_element": {"id": "FERRERO.TABULAR.NEW.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF04"}, "display_value": "ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND (Marketing)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF04"}, "display_value": "ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "BRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TABULAR_BRAND", "column_name": "BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.NEW.BRAND", "parent_table_name": "BRAND (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "tabular": true, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "a37b13c02cba799378211e17b73234a0d836f9b6"}, "metadata_element": {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "CQ"}, "display_value": "FERRERO ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND(HARMONIZED)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "CQ"}, "display_value": "FERRERO ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.HARMONIZEDBRAND", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_HARMONIZEDBRAND", "column_name": "HARMONIZEDBRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.HARMONIZEDBRAND", "parent_table_name": "BRAND(HARMONIZED)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "AGENCY.COLLABORATION", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "183d6e0957a9940f9b18ef44f46d957802b63397"}, "metadata_element": {"id": "AGENCY.COLLABORATION", "name": "Agency collaboration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency collaboration", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "AGENCY_COLLABORATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "AGENCY.SHARING", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "d0e2b725ddfdc452cc3ba750bbe8ec059c6b01ba"}, "metadata_element": {"id": "AGENCY.SHARING", "name": "Agency sharing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency sharing", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "AGENCY_SHARING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "CONTENT.SCALING.AGENCYNAME", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "f9dfa695cc5ef8cd3fafada4e44cfdaa1522d58a"}, "metadata_element": {"id": "CONTENT.SCALING.AGENCYNAME", "name": "Content Scaling agency name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Scaling agency name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENTSCALING_AGENCYNAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "container_name": "01. Ferrero Rocher", "container_type_id": "GLOBALSUBCATEGORY", "container_type_name": "L2 - SUBCATEGORY", "inherited_metadata_values": [{"id": "MARKETING_SUBCATEGORY", "tabular": false, "value_id": {"uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "originator_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "inherited_field_id": "3000ad591e09b5c75f85fc2ccbb9ebeb31b3ab78"}, "metadata_element": {"id": "MARKETING_SUBCATEGORY", "name": "SUBCATEGORY", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Mart-Ferrero-Rocher"}, "display_value": "Ferrero Rocher", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "SUBCATEGORY", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "SUBCATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "SUBCATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "tabular": true, "value_id": {"uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "originator_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "inherited_field_id": "2c751ce760d88c0e271925ea5149348106944bfa"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Subcategory Owner", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_SUBCATEGORY_OWNER_TM", "column_name": "SUBCATEGORY_OWNER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "parent_table_name": "Subcategory Owner", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "container_name": "03. Premium Chocolate", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "originator_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E06"}, "display_value": "PREMIUM CHOCOLATE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "originator_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final Approver BPS ", "values": [{"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "container_name": "00. Master Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "originator_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00. Master Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "container_name": "LOCADAPLOCCOMM - FER ROCHER 4", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "LOCADAPLOCCOMM - FER ROCHER 4"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000794"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "LOCADAPLOCCOMM_-__CQ_LAL_MLT_PRE_0000794"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local adaptation of local comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Master Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000783"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Master Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "DK"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "DK"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "SE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "FI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "NO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "IS"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "GL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2025/2026"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2797"}, "display_value": "Owner, Asset (AssetownerLoG, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2797"}, "display_value": "Owner, Asset (AssetownerLoG, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2797"}, "display_value": "Owner, Asset (AssetownerLoG, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2797"}, "display_value": "Owner, Asset (AssetownerLoG, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "A1"}, "display_value": "Local Campaign ready for localization", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ADDITIONALAPPROVER", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.LICENSING", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "d0ef653291e269a7d1ddf0ebfedd1c6ad70b1c59"}, "metadata_element": {"id": "FERRERO.FIELD.LICENSING", "name": "Campaign License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "LICENSING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}}]}, {"container_id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "container_name": "25-26", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "originator_id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "25-26"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "container_name": "02. Campaign", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "originator_id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "02. Campaign"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "f31042cfc487f066486c46527c076b8ee6618ceb", "container_name": "01. Standard", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "f31042cfc487f066486c46527c076b8ee6618ceb", "originator_id": "f31042cfc487f066486c46527c076b8ee6618ceb", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "01. Standard"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "container_name": "02. Sweden", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "originator_id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "02. Sweden"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "container_name": "SCANDINAVIA", "container_type_id": "GLOBALMARKETUNIT", "container_type_name": "L6 - MARKET UNIT", "inherited_metadata_values": [{"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "24a6615bcce9adc5a098c76c29b8e8baba61a9a3"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E22"}, "display_value": "SCANDINAVIA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "13063087b81ea172db42e69ed8e8fa013cd5bfe0"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Local SCANDINAVIA Editable Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "bf49ba2a40d0d0dccee4d5de7381659b106dd89a"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Premium Chocolate Local SCANDINAVIA Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "8e4d311466783d8215a38b08bee3cb2b3bfcf40f"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "9e88b5726590ab30642999a28a301e3fbcebc762"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "name": "Published Security Policy - Restricted Visibility", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Security Policy - Restricted Visibility", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_VISIBILITY_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "3c0070e420882e3e18f6097811cb60a67239003b"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local SCANDINAVIA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "7f3c1933b61e900457ea6e2aab750303882873d4"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "b0c960759e48c0fcdcb650417179a614da95e866"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Local SCANDINAVIA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "6f603fcc63415e266dc35cf2314d31357a2966bf"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "3c12728b06ecfafeeb74482ea7b7296b180765f9"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "dc9b8ffa0591a1b2956c07fa5dc10ff477c84f4e"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "495fa4f08769a021cfa907dfb7a903fade9bd19a"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "e3b647e172a89e1e7cbdd2964faff1bca8dcf520"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "6870cca056b54cd400a9fbd4fe75513e69cedcdd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "RMMC", "values": [{"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "container_name": "01. MC - Rocher", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "bb01cf85444107f22341d2b88421f0cbaade0bf9"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E023"}, "display_value": "MULTI COUNTRY EUROPE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "8f497ce53d23899c7c09aa5a7ca69c9f55c3a62d"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E22"}, "display_value": "SCANDINAVIA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "ca70a6d55e4277ecbef2a01a593c614501cbcf74"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "3e9d669ab1047383d0416ba40af75744148c94c8"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "0e241fc386dcd91baa31a409e297169fe4a352c2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "2e3e0f2be0e487b540d9b63cb8c0e9ed9c6b1bb6"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "359c98154f230a60acc6b4eb048e129411d7a778"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "b3698893fc223e8371f4e4c0d560d0536c724a09"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "e92f9f10c0c29dda8261218c2c72a0baa66472f2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "15dff42c3b196ba3ae5b3c2ea33f00e347e6f654"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "0ae044cd9dddf86cd9406c9edc3996b18c430be0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "name": "AMMC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AMMC", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LOCAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "7806fed6127b50c21f6b03e1f7b63f3dedc1e8d1"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "RMMC", "values": [{"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "4c8a2d6e178638bfacfeaf3f7f6f1000304693a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "name": "Product Asset Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Asset Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCT_ASSET_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of local comm"}, "display_value": "Local adaptation of local comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of local comm"}, "display_value": "Local adaptation of local comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "5a1ae26558efdc03336c0df838dd9e7c2a51c687"}, "metadata_element": {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "name": "Market Unit", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market Unit", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETUNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "MARKET_UNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "container_name": "Read Only", "container_type_id": "L3 - Agency Structure", "container_type_name": "L3 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "55530f721f18c847e35d7c828edf53461b5014b0"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "330bb6f68316aab5c45f9fe34e047cce573c67cc"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "name": "Agency Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "AGENCY_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "e30e90d694f9935d4c15c4c78891beed8853a272"}, "metadata_element": {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "name": "Published Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "PUBLISHED_ASSET_SP_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "23b155c32d5c6142914b41458234c100812bbec8", "container_name": "Oliver", "container_type_id": "L2 - Agency Structure", "container_type_name": "L2 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.AGENCY", "tabular": false, "value_id": {"uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "originator_id": "23b155c32d5c6142914b41458234c100812bbec8", "inherited_field_id": "48fcbc397986aca5bb8722a95197dd0a46f19b4e"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_AGENCY", "column_name": "AGENCY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "container_name": "Z - Exchange", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "YY"}, "display_value": "AGENCIES", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Final Approver BPS ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}], "asset_lock_state_last_update_date": "2026-01-14T14:27:42.143+01:00", "content_lock_state_last_update_date": "2026-01-14T14:23:42.103+01:00"}, "language_code": null, "language_name": null, "subject_title": null, "file_extension": ".jpg", "asset_type_name": null, "file_size_bytes": null, "duration_seconds": null, "upload_directory": "c61cb01650b9ca8e8a9e27f9d47a5f8273753ed9", "local_campaign_id": "C000000794", "original_filename": "images", "global_master_folder_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "global_master_campaign_id": "C000000783"} 2026-01-16 20:41:22.194138 \N 14 WPzPgq master_asset_created {"id": 14, "tags": null, "status": "active", "width_px": null, "height_px": null, "mime_type": "video/mp4", "asset_type": null, "brand_code": null, "brand_name": null, "categories": null, "created_at": "2026-01-16T20:41:31.151467", "deleted_at": null, "is_deleted": false, "updated_at": "2026-01-16T20:41:31.151467", "description": "Box File ID: 2105210425292\\nBox URL: https://app.box.com/file/2105210425292\\nDAM Asset ID: 6341dedf8117677336cb66fa9a7ce94c4c2d10d1", "ingested_at": "2026-01-16T20:41:31.151467", "ingested_by": null, "opentext_id": "6341dedf8117677336cb66fa9a7ce94c4c2d10d1", "tracking_id": "WPzPgq", "aspect_ratio": null, "country_code": null, "country_name": null, "full_metadata": {"name": "kinder-joy_videoE2E.mp4", "links": {"links": [], "source_id": "6341dedf8117677336cb66fa9a7ce94c4c2d10d1"}, "locked": false, "deleted": false, "expired": false, "version": 1, "asset_id": "6341dedf8117677336cb66fa9a7ce94c4c2d10d1", "metadata": {"id": "ECOMMERCE", "name": "Marketing Asset", "type": "com.artesia.metadata.MetadataModel", "legacy_id": 116, "metadata_element_list": [{"id": "FERRERO.CATEGORY.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200054, "metadata_element_list": [{"id": "FERRERO.FIELD.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Status", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.CONTENT_STATUS", "edit_type": "COMBO_NOTNULL", "facetable": false, "searchable": true, "table_name": "FERRERO_CONTENT_STATUS_MD", "column_name": "CONTENT_STATUS", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9215, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRER.CATEGORY.ASSET_INFO", "name": "Asset Info", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200022, "metadata_element_list": [{"id": "FERRERO.FIELD.MKTG.ASSET TYPE", "name": "Asset Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.ASSETTYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.FISCAL YEAR", "name": "Release Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2026/2027"}, "display_value": "2026/2027", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Release Fiscal Year", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_DOMAIN_FISCAL_YEAR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "FISCAL__YEAR", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "name": "Main Languages", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1210, "metadata_element_list": [{"id": "MAIN_LANGUAGES", "name": "MAIN LANGUAGES", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "MAIN LANGUAGES", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MAIN LAGUAGES_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MAIN_LANGUAGE_TABLE", "column_name": "MAIN_LANGUAGE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "parent_table_name": "Main Languages", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.ASSET DESCRIPTION", "name": "Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Description", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "DESCR", "data_length": 249, "description": "Descriptive information", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.FLAVOUR", "name": "Flavour", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Flavour", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.FLAVOUR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FLAVOUR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.SIZE", "name": "Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Size", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.SIZE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SIZE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1241, "metadata_element_list": [{"id": "FERRERO.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Compliance", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ASSETCOMPLIANCE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_COMPLIANCE", "column_name": "ASSET_COMPLIANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "parent_table_name": "Asset Compliance", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.TAG DETAILS", "name": "Tag Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 118, "metadata_element_list": [{"id": "ARTESIA.FIELD.TAG", "name": "Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Tag", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.TAGS", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "OTMM_TAGS", "column_name": "TAG", "data_length": 80, "description": "Tag", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG CONFIDENCE", "name": "Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Confidence", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG TYPE", "name": "Tag Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Tag Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "TAG_TYPE", "data_length": 10, "description": "Tag Type", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED BY", "name": "Associated By", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Associated By", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_BY", "data_length": 10, "description": "Associated By", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED DATE", "name": "Associated Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Associated Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_DATE", "data_length": 10, "description": "Associated Date", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.STATE", "name": "Global/Local", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "GLOBAL"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO_NOTNULL", "facetable": true, "searchable": true, "table_name": "FERRERO_IC_ASSET_DETAILS", "column_name": "ASSET_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.ASPECT RATIO", "name": "Aspect Ratio (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio (Marketing)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASPECT_RATIO", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASPECT_RATIO", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "name": "Tag (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1222, "metadata_element_list": [{"id": "MARKETING_TAG", "name": "Marketing Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Marketing Tag", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.DOMAIN.TAG", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TAG_MARKET", "column_name": "TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "parent_table_name": "Tag (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.TAGS", "name": "Auto-Generated Tags", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Auto-Generated Tags", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "AUTO_GENERATED_TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CERTIFIER", "name": "Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approver", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.MARKETING.FIELD.APPROVAL DATE", "name": "Approval__Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approval__Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.LEGAL APPROVAL DATE", "name": "Legal Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CERTIFIER", "name": "IA&CC Certifier", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Certifier", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CC APPROVAL DATE", "name": "IA&CC Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "name": "Extended Approval", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1230, "metadata_element_list": [{"id": "FERRERO.FIELD.EXTENDED.APPROVAL", "name": "Extended Approval required by:", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended Approval required by:", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COMMENTS", "name": "Comment", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comment", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "COMMENTS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.DATE", "name": "Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USERS", "name": "User ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "User ID", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "USERS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXTENDED.JOBID", "name": "Extended JobID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended JobID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.MIGRATION.INDEX", "name": "Migration Index", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Migration Index", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MIGRATION.INDEX", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MIGRATION_INDEX", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "FERRERO_MARKET_MARKETING_CREATOR", "name": "Marketing Creator", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Marketing Creator", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.CREATOR", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MARKETING_CREATOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "ARTESIA.FIELD.IS LATEST VERSION", "name": "Is Latest Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Y"}, "display_value": "Yes", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Is Latest Version", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.YES_NO", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "IS_LATEST_VERSION", "data_length": 1, "description": "Is this the latest version? (Y/N)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET VERSION", "name": "Asset Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 1}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Version", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "INTEGER", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "VERSION", "data_length": 12, "description": "Version number of asset", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET_ID", "name": "Asset ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "6341dedf8117677336cb66fa9a7ce94c4c2d10d1"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset ID", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "LOGICAL_UOI_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.ECOMMERCE STATUS", "name": "Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "PUBLISHED"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Status", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "ASSET_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CREATOR", "name": "Uploaded by", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Uploaded by", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_USER_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.FIELD.CREATION DATE", "name": "Upload Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-14T14:23:41.74+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Upload Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_DT", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.ASSET NAME", "name": "Asset Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "kinder-joy_videoE2E.mp4"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Name", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "description": "Original name of master object", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.CONTENT TYPE", "name": "Content Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "VIDEO"}, "display_value": "Video", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Type", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.CONTENT_TYPES", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "CONTENT_TYPE", "data_length": 8, "description": "Content Type", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.MIME TYPE", "name": "File Extension", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "video/mp4"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Extension", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_MIME_TYPE", "data_length": 80, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.FILE.SIZE", "name": "File Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "long", "value": 3080691}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Size", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "LONG", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_SIZE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP RESOLUTION", "name": "Bitmap Resolution", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Resolution", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_RESOLUTION", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP WIDTH", "name": "Bitmap Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Width", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_WIDTH", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP HEIGHT", "name": "Bitmap Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Height", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_HEIGHT", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "name": "Approval Metadata", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1249, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.DEPARTMENT", "name": "Department", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Department", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "DEPARTMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.CERTIFIER", "name": "Certifier", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Certifier", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL DATE", "name": "Approval Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Approval Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "APPROVAL_DATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.COMMENT", "name": "Comments", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comments", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "COMMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.TYPE OF APPROVAL", "name": "Type of Approval", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Approval", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "TYPE_OF_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL STATUS", "name": "Approval Status", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Approval Status", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "APPROVAL_STATUS", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.SUB JOBID", "name": "Sub Job Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sub Job Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.VIDEO.BIT_RATE", "name": "Bitrate", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 2487939.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitrate", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "BIT_RATE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.EMBEDDED.FIELD.DURATION", "name": "Duration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00:00:09:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Duration", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "DURATION_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.ASPECT RATIO", "name": "Aspect Ratio", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "1.778"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "ASPECT_RATIO", "data_length": 30, "displayable": false, "instructions": "ASPECT_RATIO", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME HEIGHT", "name": "Frame Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 1080}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Height", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_HEIGHT", "data_length": 12, "displayable": true, "instructions": "FRAME_HEIGHT", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME WIDTH", "name": "Frame Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 1920}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Width", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_WIDTH", "data_length": 12, "displayable": true, "instructions": "FRAME_WIDTH", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.ASPECT.RATIO.POC", "name": "Aspect Ratio(POC)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "16:9"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio(POC)", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASPECT_RATIO_TABLE", "column_name": "ASPECT_RATIO", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "PRODUCT.DETAILS", "name": "Product Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200029, "metadata_element_list": [{"id": "FERRERO.TABLE.EANCODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1208, "metadata_element_list": [{"id": "EAN_CODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "EAN CODE/ 77 CODE", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "EAN.CODE", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "EAN_CODE", "column_name": "EAN_CODE_DESCRIPTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "COUNTRY", "name": "COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "EAN_CODE", "column_name": "COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKETING.ADVANCE.PRODUCT.LINK", "name": "Asset-to-product relation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset-to-product relation", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_MARKETING_ADVANCE_PRODUCT_LINK", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ADVANCE_PRODUCT_LINK", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 10182, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.SUB BRAND", "name": "Sub-Brands", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Sub-Brands", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.SUBBRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "SUB_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT WEIGHT", "name": "Product Weight", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Weight", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_WEIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.CONSUMER UNIT PACKAGING", "name": "Consumer Unit Packaging", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Consumer Unit Packaging", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PACK", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "CONSUMER_UNIT_PACKAGING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.4 DIGIT CODE", "name": "4 Digit Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "4 Digit Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "DIGITCODE", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERREO.ECOM.RETAILER_SPECIFIC_FIELD", "name": "Retailer Specific", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Retailer Specific", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "RETAILER_SPECIFIC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "cascading_group_id": "FERRERO.RETAILER.SPECIFIC", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY START PERIOD", "name": "Asset validity start period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity start period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_STARTING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY END PERIOD", "name": "Asset validity end period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity end period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_ENDING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.ASSET.NAMING.CONVENTION", "name": "Does asset need GS1 naming convention", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Does asset need GS1 naming convention", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASSETNAMINGCONVENTION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_NAMING_CONVENTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9515, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT VIEW", "name": "Product View", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product View", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT VIEW", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_VIEW", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT ANGLE", "name": "Product Angle", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Angle", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT.ANGLE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_ANGLE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT STATE", "name": "Product State", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product State", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT STATE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PROMOTION ID", "name": "Promo ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Promo ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROMO_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.BUSINESS.ASSET TYPE", "name": "Asset Type (eDAM)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Angled view", "field_value": {"type": "string", "value": "angledview"}, "display_value": "ANGLED VIEW", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Type (eDAM)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "OTMM.DOMAIN.OTMM_ASSETTYPE_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_BUSINESS_INFO", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7244, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200048, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.AGENCY NAME", "name": "Agency Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "0000000001"}, "display_value": "ATest", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Agency Name", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.AGENCY_NAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AGENCY_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7336, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.CREATIX", "name": "CreativeX", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200059, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.CREATIVEX", "name": "Confidence", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1245, "metadata_element_list": [{"id": "FERRERO.TAB.FIELD.CREATIVEX", "name": "Platform > Rating (%)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Platform > Rating (%)", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_CREATIVEX", "column_name": "CREATIVEX_NEW", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CREATIVEX", "parent_table_name": "Confidence", "cascading_group_id": "FERRERO.CREATIVEX.CHAR", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.CREATIVEX LINK", "name": "CreativeX Hyperlink", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "CreativeX Hyperlink", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_CREATIVEX", "column_name": "CREATIVE_LINK", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.IP_RIGHTS", "name": "IP Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200046, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.IPRIGHT", "name": "IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IP Rights", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.IPRIGHTS", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IP_RIGHTS", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.BUYOUT", "name": "Touchpoint Scope", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Touchpoint Scope", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.TOTAL_BUYOUT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TOTAL_BUYOUT", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.FERRERO PROPERTY", "name": "Ferrero Property", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Ferrero Property", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.FERRERO_PROPERTY", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FERRERO_PROPERTY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200035, "metadata_element_list": [{"id": "FERRERO.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1209, "metadata_element_list": [{"id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "name": "IP Coverage, Area, Region & Market Unit", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Coverage, Area, Region & Market Unit", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "IPCOVERAGE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "cascading_group_id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHT TYPE", "name": "Copyright Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHT_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.MEDIATYPE", "name": "Media Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Media Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MEDIA_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "MEDIA_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE FROM", "name": "Expiration of Usage - From", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - From", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_FROM", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE TO", "name": "Expiration of Usage - To", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - To", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_TO", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO._DURATION", "name": "IP Duration", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Duration", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "ECOM_DURATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHTTYPE DETAILS", "name": "Copyright Type Details", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type Details", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHTTYPE_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 6, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.MARKET.VID_STAT_RIGHT", "name": "Video & Static Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200047, "metadata_element_list": [{"id": "FERRERO.MARKET.VID_N_STAT", "name": "Video and Static Right", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video and Static Right", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VID_AND_STAT_RIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.VID_STAT_TYPE", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1221, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.TYPE_VID", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Video & Static Right", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TYPE_VID_STAT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_MARKET_TYPE_VID_STAT", "column_name": "TYPE_OF_VIDEO_STATIC_RIGHT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.VID_STAT_TYPE", "parent_table_name": "Type of Video & Static Right", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKET.PROD_COMPANY", "name": "Production House", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Production House", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.PRODUCT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200050, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.LICENSIN", "name": "Licensing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Licensing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSING", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "cascading_group_id": "FERRERO.MARKET.CG.LICENSE", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.SPOT_DETAILS", "name": "Spot Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200049, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.SPOT_VERSION", "name": "Spot Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Version", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_VERSION", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_VERSION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.SPOT_TYPE", "name": "Spot Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_TYPE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.DIRECTOR_NAME", "name": "Director Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Director Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "DIRECTOR_NAME", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VIDEO_POST_PROD_COMPANY", "name": "Video Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VID_POST_PROD_CONTACT", "name": "Video Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_COMPANY", "name": "Audio Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_CONTACT", "name": "Audio Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.BROADCASTER.CODE", "name": "Broadcaster Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Broadcaster Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BROADCASTER_CODE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.TECHNICAL_VALIDATION", "name": "Technical Validation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Technical Validation", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TECHNICAL_VALIDATION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS", "name": "Media Analysis", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1002, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "name": "Categories", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 105, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY NAME", "name": "Category Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Category Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "NAME", "data_length": 100, "description": "Category Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY CONFIDENCE", "name": "Category Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Category Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "CONFIDENCE", "data_length": 10, "description": "Category Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES COUNT", "name": "Faces Count", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Faces Count", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACECOUNT", "column_name": "COUNT", "data_length": 10, "description": "Faces Count", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "name": "Face Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 106, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME", "name": "Recognized Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME", "data_length": 2000, "description": "Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME CONFIDENCE", "name": "Recognized Name Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME_CONFIDENCE", "data_length": 10, "description": "Name Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE", "name": "Person Age", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE", "data_length": 10, "description": "Person Age", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE CONFIDENCE", "name": "Person Age Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Person Age Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_CONFIDENCE", "data_length": 10, "description": "Person Age Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER", "name": "Gender", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Gender", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.GENDER", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER", "data_length": 40, "description": "Gender", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER CONFIDENCE", "name": "Gender Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Gender Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER_CONFIDENCE", "data_length": 10, "description": "Gender Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.FACE COORDS", "name": "Face Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "FACE_COORDS", "data_length": 200, "description": "Face Coordinates like postion, height,width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE GROUP", "name": "Person Age Group", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age Group", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.AGE GROUP", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_GROUP", "data_length": 10, "description": "Person Age Group", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "name": "Safe Content", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 107, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONTENT TYPE", "name": "Safe Content Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Safe Content Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENTS", "data_length": 20, "description": "Safe Content Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONFIDENCE", "name": "Content Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Content Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENT_CONFIDENCE", "data_length": 10, "description": "Safe Content Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "name": "Colors", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 108, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.NAME", "name": "Color", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Color", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "NAME", "data_length": 25, "description": "COLOR", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.PROPORTION", "name": "Color Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Color Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "PROPORTION", "data_length": 10, "description": "Proportion", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.FOREGROUND", "name": "Foreground Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Foreground Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "FOREGROUND", "data_length": 25, "description": "Foreground Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.BACKGROUND", "name": "Background Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Background Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "BACKGROUND", "data_length": 25, "description": "Background Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.ISBW", "name": "Is Black and White", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Is Black and White", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "ISBW", "data_length": 10, "description": "Is Black and White", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "name": "Captions", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 109, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION TEXT", "name": "Caption Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Caption Text", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "TEXT", "data_length": 2000, "description": "Caption Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION CONFIDENCE", "name": "Caption Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Caption Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "CAPTION_CONFIDENCE", "data_length": 10, "description": "Caption Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "name": "Image Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 110, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.IMAGE TYPE", "name": "Analysis Image Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Analysis Image Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_IMAGE_TYPE", "column_name": "TYPE", "data_length": 100, "description": "Image Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "parent_table_name": "Image Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.DATE", "name": "Date: Media Analysis", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-14T14:26:29+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date: Media Analysis", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MEDIA_ANALYSIS_DATE", "data_length": 25, "description": "Date Media Analysis was done on the asset.", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR LANGUAGE", "name": "Image Text Language", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Image Text Language", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "LANGUAGE", "data_length": 10, "description": "OCR data language", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR TEXT", "name": "Text on Image", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Text on Image", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "TEXT", "data_length": 4000, "description": "OCR Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "name": "Embedded Brand Info", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 119, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.NAME", "name": "Embedded Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Embedded Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Embedded Brand Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.CONFIDENCE", "name": "Embedded Brand Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Embedded Brand Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Embedded Brand Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.COORDINATES", "name": "Embedded Brand Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Embedded Brand Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "COORDINATES", "data_length": 200, "description": "Embedded Brand Coordinates like position, height, width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "HYBRIS.PRODUCT.INFO", "name": "PIM Item Reference", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200027, "metadata_element_list": [{"id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "name": "Hybris Item Reference", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1206, "metadata_element_list": [{"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ID", "name": "Hybris Item ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ID", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT TAG NAME", "name": "Hybris Assignment Label", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Assignment Label", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_TAG_NAME", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ATTRIBUTE NAME", "name": "Hybris Attribute Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Attribute Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ATTRIBUTE_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT CATALOG NAME", "name": "Hybris Catalog Mnemonic", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Catalog Mnemonic", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_CATALOG_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT PK", "name": "Hybris Item PK", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item PK", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_PK", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.SYSTEM ID", "name": "Hybris System ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris System ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "SYSTEM_ID", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.ASSIGNED", "name": "Assigned", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Assigned", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "ASSIGNED", "column_name": "ASSIGNED", "data_length": 38, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PIM TYPE", "name": "PIM Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "PIM Type", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_PIM_TYPE", "column_name": "PIM_TYPE", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS VIDEO", "name": "Media Analysis Video", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1003, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "name": "Labels", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 113, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.ID", "name": "Label Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Label Id", "values": [{"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 1}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 2}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "ID", "data_length": 40, "description": "Label Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.NAME", "name": "Label Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "clothing"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Label Name", "values": [{"value": {"type": "string", "value": "clothing"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "fabric"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "candy"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "NAME", "data_length": 40, "description": "Label Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.APPEARANCES", "name": "Label Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:03\\",\\"endTime\\":\\"0:00:03.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Label Appearances", "values": [{"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:03\\",\\"endTime\\":\\"0:00:03.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:03\\",\\"endTime\\":\\"0:00:03.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:07\\",\\"endTime\\":\\"0:00:07.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "APPEARANCES", "data_length": 0, "description": "Label Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "name": "Sentiments", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 114, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.ID", "name": "Sentiment Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "ID", "data_length": 40, "description": "Sentiment Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.NAME", "name": "Sentiment Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "NAME", "data_length": 40, "description": "Sentiment Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.APPEARANCES", "name": "Sentiment Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "APPEARANCES", "data_length": 0, "description": "Sentiment Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.SEEN.DURATION.RATIO", "name": "Sentiment Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Sentiment Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "name": "Keywords", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 115, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.ID", "name": "Keyword Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "ID", "data_length": 40, "description": "Keyword Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.NAME", "name": "Keyword Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "NAME", "data_length": 40, "description": "Keyword Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.APPEARANCES", "name": "Keyword Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Keyword Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "name": "Faces", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 111, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.ID", "name": "Face Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "ID", "data_length": 40, "description": "Face Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.NAME", "name": "Face Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "NAME", "data_length": 40, "description": "Face Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.TITLE", "name": "Face Title", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Title", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "TITLE", "data_length": 249, "description": "Face Title", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.DESCRIPTION", "name": "Face Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Face Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.APPEARANCES", "name": "Face Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "APPEARANCES", "data_length": 0, "description": "Face Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SPEAKER.FACE.ID", "name": "Video Speaker Object Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Speaker Object Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "THUMBNAIL_OBJECT_ID", "data_length": 40, "description": "Video Speaker Object Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.SEEN.DURATION.RATIO", "name": "Face Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "SEEN_DURATION_RATIO", "data_length": 20, "description": "Face Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "name": "Brands", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 112, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.ID", "name": "Video Brand Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "ID", "data_length": 40, "description": "Brand Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.NAME", "name": "Video Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Brand Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.DESCRIPTION", "name": "Video Brand Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Brand Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.WIKIURL", "name": "Video Brand Wiki URL", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Wiki URL", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "WIKIURL", "data_length": 200, "description": "Brand Wiki URL", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.APPEARANCES", "name": "Video Brand Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Brand Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.SEEN.DURATION.RATIO", "name": "Video Brand Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Brand Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "name": "Speeches", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 116, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.ID", "name": "SpeechText Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "SpeechText Id", "values": [{"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "ID", "data_length": 40, "description": "SpeechText Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXT", "name": "Speech Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Kinder"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Speech Text", "values": [{"value": {"type": "string", "value": "Kinder"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXT", "data_length": 1000, "description": "Speech Text", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXTTYPE", "name": "Speech Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "OCR"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Speech Type", "values": [{"value": {"type": "string", "value": "OCR"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXTTYPE", "data_length": 40, "description": "Speech Type", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.START TIME", "name": "Speech Start Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "0:00:09"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Speech Start Time", "values": [{"value": {"type": "string", "value": "0:00:09"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "START_TIME", "data_length": 40, "description": "Speech Start Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.END TIME", "name": "Speech End Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "0:00:09.04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Speech End Time", "values": [{"value": {"type": "string", "value": "0:00:09.04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "END_TIME", "data_length": 40, "description": "Speech End Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "name": "Speakers", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 122, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.ID", "name": "Speaker Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "ID", "data_length": 40, "description": "Speaker Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.NAME", "name": "Speaker Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "NAME", "data_length": 100, "description": "Speaker Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.APPEARANCES", "name": "Speaker Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "APPEARANCES", "data_length": 0, "description": "Speaker Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.FIELDGROUP.LOCALASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200057, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1239, "metadata_element_list": [{"id": "FERRERO.FIELD.COUNTRY", "name": "LOCAL COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "LOCAL COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USER", "name": "USER", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "USER", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_USER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.ASSOCIATION", "name": "TYPE OF ASSOCIATION", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "TYPE OF ASSOCIATION", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_ASSOCIATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.VALUE", "name": "VALUE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "VALUE", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_VALUE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "CG.CATEGORY.FADEL ASSET INFORMATION", "name": "Rights Asset Information", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200064, "metadata_element_list": [{"id": "CG.FIELD.RIGHTS MANAGED", "name": "Fadel IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fadel IP Rights", "enabled": true, "options": "", "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_RIGHTS_MANAGED_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGED", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.NEEDS RIGHTS MANAGEMENT", "name": "Needs Rights Management", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "10", "field_value": {"type": "string", "value": "N"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Needs Rights Management", "enabled": true, "options": "", "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_NEEDS_RIGHTS_MANAGEMENT_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "NEEDS_RIGHTS_MANAGEMENT", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.RIGHTS MANAGEMENT DESCRIPTION", "name": "Rights Management Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Rights Management Description", "enabled": true, "options": "", "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGEMENT_DESCRIPTION", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.RIGHTS MANAGEMENT STATUS", "name": "Rights Management Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Rights Management Status", "enabled": true, "options": "", "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_RIGHTS_MANAGEMENT_STATUS_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGEMENT_STATUS", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.FORCE SYNC", "name": "Force Sync", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Force Sync", "enabled": true, "options": "", "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_FORCE_SYNC_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "FORCE_SYNC", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.LAST SYNC TIME", "name": "Date of last data sync", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date of last data sync", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "LAST_SYNC_TIME", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "CG.CATEGORY.FADEL RIGHTS INFORMATION", "name": "Rights Information", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200065, "metadata_element_list": [{"id": "CG.TABLE.RIGHTS", "name": "Rights", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1256, "metadata_element_list": [{"id": "CG.FIELD.RIGHT TERRITORIES", "name": "Territory", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Territory", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "TERRITORY", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT USES", "name": "Use", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Use", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "USAGE", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT IN DATE", "name": "In Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "In Date", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "IN_DATE", "data_length": 10, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT OUT DATE", "name": "Out Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Out Date", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "OUT_DATE", "data_length": 10, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "saved_values_behavior_mode": 0}]}]}, {"id": "CG.CATEGORY.FADEL AGREEMENTS AND PARTIES", "name": "Agreements and Parties", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200067, "metadata_element_list": [{"id": "CG.TABLE.PARTIES.AGREEMENTS VW", "name": "Customized Table Parties and Agreements", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1258, "metadata_element_list": [{"id": "CG.FIELD.AGREEMENT NUMBER VW", "name": "Agreement Number ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Number ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_NUMBER", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT DESCRIPTION VW", "name": "Agreement Description ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Description ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_DESCRIPTION", "data_length": 2000, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT START DATE VW", "name": "Agreement Start Date ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Start Date ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_START_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT END DATE VW", "name": "Agreement End Date ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement End Date ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_END_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY NAME VW", "name": "Party Name ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Name ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_NAME", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY ROLE VW", "name": "Party Role ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Role ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_ROLE", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY EMAIL ADDRESS VW", "name": "Party Email Address ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Email Address ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_EMAIL_ADDRESS", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY PHONE NUMBER VW", "name": "Party Phone Number ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Phone Number ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_PHONE_NUMBER", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PRIMARY PARTY CONTACT VW", "name": "Primary Party Contact ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Primary Party Contact ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PRIMARY_PARTY_CONTACT", "data_length": 200, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 8, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "ARTESIA.CATEGORY.VIDEO ATTRIBUTES", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 0, "metadata_element_list": [{"id": "ARTESIA.FIELD.VIDEO.FRAMERATE", "name": "Framerate", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 25.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Framerate", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": false, "data_type": "NUMBER", "facetable": false, "searchable": false, "table_name": "VIDEO_PARENT_ASSETS", "column_name": "FRAMERATE", "data_length": 0, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.VIDEO.START SMPTE", "name": "Start Time SMPTE", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00:00:00:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Start Time SMPTE", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "VIDEO_ASSETS", "column_name": "START_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.END SMPTE", "name": "End Time SMPTE", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00:00:09:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "End Time SMPTE", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "VIDEO_ASSETS", "column_name": "END_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.START MSEC", "name": "Start Time MSEC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Start Time MSEC", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": false, "data_type": "NUMBER", "facetable": false, "searchable": false, "table_name": "VIDEO_ASSETS", "column_name": "START_MSEC", "data_length": 0, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.VIDEO.END MSEC", "name": "End Time MSEC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 9040}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "End Time MSEC", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": false, "data_type": "NUMBER", "facetable": false, "searchable": false, "table_name": "VIDEO_ASSETS", "column_name": "END_MSEC", "data_length": 0, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.VIDEO.CLIP PARENT ID", "name": "Clip Parent Id", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Clip Parent Id", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": false, "data_type": "CHAR", "facetable": false, "searchable": false, "table_name": "VIDEO_ASSETS", "column_name": "PARENT_UOI_ID", "data_length": 40, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.VIDEO.LOW RES MIME TYPE", "name": "Low Resolution Mimetype", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "video/mp4"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Low Resolution Mimetype", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": false, "data_type": "CHAR", "facetable": false, "searchable": false, "table_name": "VIDEO_URLS", "column_name": "LO_RES_MIME_TYPE", "data_length": 80, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.VIDEO.VIDEO REFERENCE", "name": "Video Reference", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 36313}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Reference", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": false, "data_type": "NUMBER", "facetable": false, "searchable": false, "table_name": "VIDEO_ASSETS", "column_name": "VIDEO_REFERENCE", "data_length": 0, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.VIDEO.DURATION MSEC", "name": "Duration MSEC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 9040}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Duration MSEC", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": false, "data_type": "NUMBER", "facetable": false, "searchable": false, "table_name": "VIDEO_ASSETS", "column_name": "DURATION_MSEC", "data_length": 0, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.VIDEO.DURATION SMPTE", "name": "Duration SMPTE", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00:00:09:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Duration SMPTE", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": false, "data_type": "CHAR", "facetable": false, "searchable": false, "table_name": "VIDEO_ASSETS", "column_name": "DURATION_SMPTE", "data_length": 11, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.VIDEO.CLIP PARENT START SMPTE", "name": "Clip Parent Start Time SMPTE", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Clip Parent Start Time SMPTE", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "VIDEO_ASSETS", "column_name": "PARENT_START_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}], "has_multilingual_fields": false}, "mime_type": "video/mp4", "path_list": [{"parents": [{"id": "d4d9835db002b9992125246f2abb7117c99ab016", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "d4d9835db002b9992125246f2abb7117c99ab016", "sequence_number": 0}, {"id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "name": "MASTER CAMP FER ROCHER 12.01.2", "container_state": "NORMAL", "original_uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "sequence_number": 0}, {"id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "name": "01. DE - Rocher ", "container_state": "NORMAL", "original_uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "sequence_number": 0}, {"id": "091216b59cad7f1ea815164c26db27e350c54023", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "sequence_number": 0}, {"id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "name": "01. Rocher", "container_state": "NORMAL", "original_uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "sequence_number": 0}, {"id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "name": "01. Ferrero Rocher", "container_state": "NORMAL", "original_uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "sequence_number": 0}, {"id": "93b0968611de11160ed068afeb9930b9965bd5ff", "name": "03. Premium Chocolate", "container_state": "NORMAL", "original_uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "sequence_number": 0}, {"id": "4b05a895330aa2fb6046f59731aba5dd93858431", "name": "LOCADAPLOCCOMM - FER ROCHER 4", "container_state": "NORMAL", "original_uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "sequence_number": 0}, {"id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "name": "25-26", "container_state": "NORMAL", "original_uoi_id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "sequence_number": 0}, {"id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "name": "02. Campaign", "container_state": "NORMAL", "original_uoi_id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "sequence_number": 0}, {"id": "f31042cfc487f066486c46527c076b8ee6618ceb", "name": "01. Standard", "container_state": "NORMAL", "original_uoi_id": "f31042cfc487f066486c46527c076b8ee6618ceb", "sequence_number": 0}, {"id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "name": "02. Sweden", "container_state": "NORMAL", "original_uoi_id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "sequence_number": 0}, {"id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "name": "SCANDINAVIA", "container_state": "NORMAL", "original_uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "sequence_number": 0}, {"id": "f2649309eb916c5c25bb309e3db061042c3eecca", "name": "01. MC - Rocher", "container_state": "NORMAL", "original_uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "sequence_number": 0}, {"id": "091216b59cad7f1ea815164c26db27e350c54023", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "sequence_number": 0}, {"id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "name": "01. Rocher", "container_state": "NORMAL", "original_uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "sequence_number": 0}, {"id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "name": "01. Ferrero Rocher", "container_state": "NORMAL", "original_uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "sequence_number": 0}, {"id": "93b0968611de11160ed068afeb9930b9965bd5ff", "name": "03. Premium Chocolate", "container_state": "NORMAL", "original_uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "sequence_number": 0}], "complete": true, "sequence_number": 2, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "d4d9835db002b9992125246f2abb7117c99ab016", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "d4d9835db002b9992125246f2abb7117c99ab016", "sequence_number": 0}, {"id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "name": "MASTER CAMP FER ROCHER 12.01.2", "container_state": "NORMAL", "original_uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "sequence_number": 0}, {"id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "name": "01. DE - Rocher ", "container_state": "NORMAL", "original_uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "sequence_number": 0}, {"id": "bfbc248a12a4bf0382406620f0d9ec41ff42e35e", "name": "01. Ferrero Rocher", "container_state": "NORMAL", "original_uoi_id": "bfbc248a12a4bf0382406620f0d9ec41ff42e35e", "sequence_number": 0}, {"id": "3d7debea6815ae46c9598191b1c645007666292a", "name": "03 . Premium Chocolate", "container_state": "NORMAL", "original_uoi_id": "3d7debea6815ae46c9598191b1c645007666292a", "sequence_number": 0}, {"id": "c0bb10be2b8f96ee4d27a2dfb7e0d03de68cf114", "name": "DE", "container_state": "NORMAL", "original_uoi_id": "c0bb10be2b8f96ee4d27a2dfb7e0d03de68cf114", "sequence_number": 0}, {"id": "b124e1ed196028bdd0e2c093e28078ca8d9ad462", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "b124e1ed196028bdd0e2c093e28078ca8d9ad462", "sequence_number": 0}, {"id": "68ce80e8c8a30badb82dabfd823886a6fa6fe309", "name": "Y - Geography", "container_state": "NORMAL", "original_uoi_id": "68ce80e8c8a30badb82dabfd823886a6fa6fe309", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "sequence_number": 0}, {"id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "name": "Read Only", "container_state": "NORMAL", "original_uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "sequence_number": 0}, {"id": "23b155c32d5c6142914b41458234c100812bbec8", "name": "Oliver", "container_state": "NORMAL", "original_uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "sequence_number": 0}, {"id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "name": "Z - Exchange", "container_state": "NORMAL", "original_uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "sequence_number": 0}], "complete": true, "sequence_number": 2, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}], "creator_id": "1003", "asset_state": "NORMAL", "checked_out": false, "folder_path": "", "content_size": 3080691, "content_type": "VIDEO", "content_state": "NORMAL", "date_imported": "2026-01-14T14:23:41.74+01:00", "import_job_id": 225736, "streaming_url": "https://ppr.dam.ferrero.com/video/data/repository/original/vol0/227/0519db2862ae6ca92d8c1c366647880e178494ac_proxy.mp4", "subscribed_to": false, "collection_ids": [], "latest_version": true, "legacy_model_id": 116, "content_editable": true, "content_sub_type": "WHOLE", "import_user_name": "bizAdmin", "date_last_updated": "2026-01-14T14:28:02.513+01:00", "metadata_model_id": "ECOMMERCE", "original_asset_id": "6341dedf8117677336cb66fa9a7ce94c4c2d10d1", "rendition_content": {"preview_content": {"id": "38b08a5df7d408745c122ee7df0675ffbb74258b", "url": "/otmmapi/v6/renditions/38b08a5df7d408745c122ee7df0675ffbb74258b", "name": "kinder-joy_videoE2E.mp4", "width": 640, "height": 360, "mime_type": "video/mp4", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "PREVIEW", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\227\\\\0519db2862ae6ca92d8c1c366647880e178494ac_proxy.mp4", "content_size": 1177223, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "thumbnail_content": {"id": "1b785415362dd9a5f56e632d76bb7492c88c50c8", "url": "/otmmapi/v6/renditions/1b785415362dd9a5f56e632d76bb7492c88c50c8", "name": "1b785415362dd9a5f56e632d76bb7492c88c50c8.jpg", "width": 500, "height": 282, "mime_type": "image/jpeg", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "THUMBNAIL", "content_path": "data\\\\repository\\\\thumb\\\\vol0\\\\201\\\\1b785415362dd9a5f56e632d76bb7492c88c50c8_1b785415362dd9a5f56e632d76bb7492c88c50c8.jpg", "content_size": 13491, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "video_rollover_content": {"id": "996b4cc7451dfd5ed970534d0c69a34c3d0f87b5", "url": "/otmmapi/v6/renditions/996b4cc7451dfd5ed970534d0c69a34c3d0f87b5", "name": "kinder-joy_videoE2E.GIF", "width": 500, "height": 282, "mime_type": "image/gif", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "ROLLOVER", "content_path": "data\\\\repository\\\\rollover\\\\vol0\\\\16\\\\996b4cc7451dfd5ed970534d0c69a34c3d0f87b5_rollover.gif", "content_size": 4110720, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_content_info": {"master_content": {"id": "cbeb3d5f63f41cd6ff573003da1acaf7889e7de1", "url": "/otmmapi/v6/renditions/cbeb3d5f63f41cd6ff573003da1acaf7889e7de1", "name": "kinder-joy_videoE2E.mp4", "width": -1, "height": -1, "mime_type": "video/mp4", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\227\\\\kinder-joy_videoE2E_cbeb3d5f63f41cd6ff573003da1acaf7889e7de1.mp4", "content_size": 3080691, "unit_of_size": "BYTES", "content_checksum": "b36d1e9f85efe2c69693dde123d6c3b2", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "supporting_content": [{"id": "0519db2862ae6ca92d8c1c366647880e178494ac", "url": "/otmmapi/v6/renditions/0519db2862ae6ca92d8c1c366647880e178494ac", "name": "kinder-joy_videoE2E.mp4", "width": 640, "height": 360, "mime_type": "video/mp4", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "SUPPORTING", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\227\\\\0519db2862ae6ca92d8c1c366647880e178494ac_proxy.mp4", "content_size": 1177223, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}]}, "asset_state_user_id": "1003", "master_content_info": {"id": "cbeb3d5f63f41cd6ff573003da1acaf7889e7de1", "url": "/otmmapi/v6/renditions/cbeb3d5f63f41cd6ff573003da1acaf7889e7de1", "name": "kinder-joy_videoE2E.mp4", "width": -1, "height": -1, "mime_type": "video/mp4", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\227\\\\kinder-joy_videoE2E_cbeb3d5f63f41cd6ff573003da1acaf7889e7de1.mp4", "content_size": 3080691, "unit_of_size": "BYTES", "content_checksum": "b36d1e9f85efe2c69693dde123d6c3b2", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "delivery_service_url": "https://ppr.dam.ferrero.com/adaptivemedia/rendition?id=6341dedf8117677336cb66fa9a7ce94c4c2d10d1", "product_associations": false, "security_policy_list": [{"id": 5467, "name": "Marketing Viewer", "status": "NORMAL", "created_by": "1003", "create_date": "2023-10-06T16:52:07.297+02:00", "description": "Marketing Viewer", "ownership_type": "PUBLIC"}, {"id": 9525, "name": "Premium Chocolate Local DE Editable Ferrero Rocher", "status": "NORMAL", "created_by": "1003", "create_date": "2024-11-26T10:08:39.973+01:00", "description": "Premium Chocolate Local DE Editable Ferrero Rocher", "ownership_type": "PUBLIC"}], "thumbnail_content_id": "1b785415362dd9a5f56e632d76bb7492c88c50c8", "content_state_user_id": "1003", "content_state_user_name": "OTMM BusinessAdmin", "asset_lock_state_user_id": "1003", "metadata_state_user_name": "OTMM BusinessAdmin", "progressive_download_url": "https://ppr.dam.ferrero.com/video/data/repository/original/vol0/227/0519db2862ae6ca92d8c1c366647880e178494ac_proxy.mp4", "access_control_descriptor": {"permissions_map": {"entry": [{"key": "text.securityPolicy.permission.Custom04Permission", "value": true}, {"key": "text.securityPolicy.permission.ContentEditPermission", "value": true}, {"key": "text.securityPolicy.permission.AssetViewPermission", "value": true}, {"key": "text.securityPolicy.permission.ProjectViewPermission", "value": true}, {"key": "text.securityPolicy.permission.MembershipEditPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom03Permission", "value": true}, {"key": "text.securityPolicy.permission.MetaDataEditPermission", "value": true}, {"key": "text.securityPolicy.permission.EditParentsPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom02Permission", "value": true}, {"key": "text.securityPolicy.permission.ExportPermission", "value": true}, {"key": "text.securityPolicy.permission.SummaryViewPermission", "value": true}, {"key": "text.securityPolicy.permission.PreviewViewPermission", "value": true}, {"key": "text.securityPolicy.permission.SubscribePermission", "value": true}, {"key": "text.securityPolicy.permission.DeleteAssetPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom01Permission", "value": true}]}}, "content_lock_state_user_id": "1003", "asset_state_last_update_date": "2026-01-14T14:28:02.513+01:00", "content_lock_state_user_name": "bizAdmin", "metadata_lock_state_user_name": "bizAdmin", "content_state_last_update_date": "2026-01-14T14:23:41.99+01:00", "inherited_metadata_collections": [{"container_id": "d4d9835db002b9992125246f2abb7117c99ab016", "container_name": "05. Final Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "d4d9835db002b9992125246f2abb7117c99ab016", "originator_id": "d4d9835db002b9992125246f2abb7117c99ab016", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "05. Final Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "container_name": "MASTER CAMP FER ROCHER 12.01.2", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "MASTER CAMP FER ROCHER 12.01.2"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000783"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "MASTER_CAMP_FER_ROC_CQ_LG_DE_PRE_0000783"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local comm on global brands"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Master Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Master Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2026/2027"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "B1"}, "display_value": "Master campaign ready for re-mastering", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ADDITIONALAPPROVER", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.LICENSING", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "d0ef653291e269a7d1ddf0ebfedd1c6ad70b1c59"}, "metadata_element": {"id": "FERRERO.FIELD.LICENSING", "name": "Campaign License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "LICENSING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}}]}, {"container_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "container_name": "01. DE - Rocher ", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "bb01cf85444107f22341d2b88421f0cbaade0bf9"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E006"}, "display_value": "GERMANY", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Local DE Editable Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Premium Chocolate Local DE Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "8f497ce53d23899c7c09aa5a7ca69c9f55c3a62d"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E64"}, "display_value": "GERMANY", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "ca70a6d55e4277ecbef2a01a593c614501cbcf74"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "3e9d669ab1047383d0416ba40af75744148c94c8"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0e241fc386dcd91baa31a409e297169fe4a352c2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "2e3e0f2be0e487b540d9b63cb8c0e9ed9c6b1bb6"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "359c98154f230a60acc6b4eb048e129411d7a778"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "b3698893fc223e8371f4e4c0d560d0536c724a09"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "e92f9f10c0c29dda8261218c2c72a0baa66472f2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "15dff42c3b196ba3ae5b3c2ea33f00e347e6f654"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Extended Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0ae044cd9dddf86cd9406c9edc3996b18c430be0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "name": "AMMC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AMMC", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LOCAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "7806fed6127b50c21f6b03e1f7b63f3dedc1e8d1"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "RMMC", "values": [{"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "4c8a2d6e178638bfacfeaf3f7f6f1000304693a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "name": "Product Asset Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Product Asset Approval Ferrero Rocher Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Asset Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCT_ASSET_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local comm on global brands"}, "display_value": "Local comm on global brands", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "5a1ae26558efdc03336c0df838dd9e7c2a51c687"}, "metadata_element": {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "name": "Market Unit", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market Unit", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETUNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "MARKET_UNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "091216b59cad7f1ea815164c26db27e350c54023", "container_name": "EU", "container_type_id": "GEOGRAPHYLOCAL", "container_type_name": "L4 - GEOGRAPHY LOCAL", "inherited_metadata_values": [{"id": "FERRERO.MARKET.FOLDER.GLOBAL", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "4c4d4bf36bf8b1ace55f990e78d6332a9cb20990"}, "metadata_element": {"id": "FERRERO.MARKET.FOLDER.GLOBAL", "name": "Global/Local (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "LOCAL"}, "display_value": "Local", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local (Marketing)", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "GLOBALLOCAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_AREA", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "3dc200c993ab8263952dc6da1498026f615f45dd"}, "metadata_element": {"id": "MARKETING_AREA", "name": "AREA", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E010"}, "display_value": "EUROPE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "AREA", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "AREA", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "AREA", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "dc7749c3e113ec9e0b9e9a3840ea55673ca5e49f"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "f2d658a3829c2ea158ae70a4b4e7928bcf88f8e2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "972d0258a82de85672bd84d8af68cdb67ad3d3ca"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "1212505ad3fe4c9d7458568f3d95aeb4c4e5c37e"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "9d1dfdef55ff7a3eb03552988ddf729c7a0f5107"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "54f006eeb366121a29ee98da33d437615dcd34e0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "1fd8802010e30d44cebb2f3eb090b12ac550f97d"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "8b6e1d8f7dc3c4671cfc11a2914d838ca3ee3f3b"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "be0dc9a87262ee7fd165237b531ba3b7aa93a260"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "2f99f0f0f9e43fb34df9222c8b73a86fb78e473e"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "container_name": "01. Rocher", "container_type_id": "GLOBALBRAND", "container_type_name": "L3 - BRAND", "inherited_metadata_values": [{"id": "FERRERO.TABULAR.NEW.BRAND", "tabular": true, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "9bb1c183135f5240f09132aef59c4ea48c762381"}, "metadata_element": {"id": "FERRERO.TABULAR.NEW.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF04"}, "display_value": "ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND (Marketing)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF04"}, "display_value": "ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "BRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TABULAR_BRAND", "column_name": "BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.NEW.BRAND", "parent_table_name": "BRAND (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "tabular": true, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "a37b13c02cba799378211e17b73234a0d836f9b6"}, "metadata_element": {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "CQ"}, "display_value": "FERRERO ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND(HARMONIZED)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "CQ"}, "display_value": "FERRERO ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.HARMONIZEDBRAND", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_HARMONIZEDBRAND", "column_name": "HARMONIZEDBRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.HARMONIZEDBRAND", "parent_table_name": "BRAND(HARMONIZED)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "AGENCY.COLLABORATION", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "183d6e0957a9940f9b18ef44f46d957802b63397"}, "metadata_element": {"id": "AGENCY.COLLABORATION", "name": "Agency collaboration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency collaboration", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "AGENCY_COLLABORATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "AGENCY.SHARING", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "d0e2b725ddfdc452cc3ba750bbe8ec059c6b01ba"}, "metadata_element": {"id": "AGENCY.SHARING", "name": "Agency sharing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency sharing", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "AGENCY_SHARING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "CONTENT.SCALING.AGENCYNAME", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "f9dfa695cc5ef8cd3fafada4e44cfdaa1522d58a"}, "metadata_element": {"id": "CONTENT.SCALING.AGENCYNAME", "name": "Content Scaling agency name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Scaling agency name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENTSCALING_AGENCYNAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "container_name": "01. Ferrero Rocher", "container_type_id": "GLOBALSUBCATEGORY", "container_type_name": "L2 - SUBCATEGORY", "inherited_metadata_values": [{"id": "MARKETING_SUBCATEGORY", "tabular": false, "value_id": {"uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "originator_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "inherited_field_id": "3000ad591e09b5c75f85fc2ccbb9ebeb31b3ab78"}, "metadata_element": {"id": "MARKETING_SUBCATEGORY", "name": "SUBCATEGORY", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Mart-Ferrero-Rocher"}, "display_value": "Ferrero Rocher", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "SUBCATEGORY", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "SUBCATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "SUBCATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "tabular": true, "value_id": {"uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "originator_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "inherited_field_id": "2c751ce760d88c0e271925ea5149348106944bfa"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Subcategory Owner", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_SUBCATEGORY_OWNER_TM", "column_name": "SUBCATEGORY_OWNER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "parent_table_name": "Subcategory Owner", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "container_name": "03. Premium Chocolate", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "originator_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E06"}, "display_value": "PREMIUM CHOCOLATE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "originator_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final Approver BPS ", "values": [{"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "container_name": "00. Master Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "originator_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00. Master Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "container_name": "LOCADAPLOCCOMM - FER ROCHER 4", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "LOCADAPLOCCOMM - FER ROCHER 4"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000794"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "LOCADAPLOCCOMM_-__CQ_LAL_MLT_PRE_0000794"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local adaptation of local comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Master Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000783"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Master Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "DK"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "DK"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "SE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "FI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "NO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "IS"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "GL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2025/2026"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2797"}, "display_value": "Owner, Asset (AssetownerLoG, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2797"}, "display_value": "Owner, Asset (AssetownerLoG, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2797"}, "display_value": "Owner, Asset (AssetownerLoG, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2797"}, "display_value": "Owner, Asset (AssetownerLoG, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "A1"}, "display_value": "Local Campaign ready for localization", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ADDITIONALAPPROVER", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.LICENSING", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "d0ef653291e269a7d1ddf0ebfedd1c6ad70b1c59"}, "metadata_element": {"id": "FERRERO.FIELD.LICENSING", "name": "Campaign License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "LICENSING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}}]}, {"container_id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "container_name": "25-26", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "originator_id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "25-26"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "container_name": "02. Campaign", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "originator_id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "02. Campaign"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "f31042cfc487f066486c46527c076b8ee6618ceb", "container_name": "01. Standard", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "f31042cfc487f066486c46527c076b8ee6618ceb", "originator_id": "f31042cfc487f066486c46527c076b8ee6618ceb", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "01. Standard"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "container_name": "02. Sweden", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "originator_id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "02. Sweden"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "container_name": "SCANDINAVIA", "container_type_id": "GLOBALMARKETUNIT", "container_type_name": "L6 - MARKET UNIT", "inherited_metadata_values": [{"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "24a6615bcce9adc5a098c76c29b8e8baba61a9a3"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E22"}, "display_value": "SCANDINAVIA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "13063087b81ea172db42e69ed8e8fa013cd5bfe0"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Local SCANDINAVIA Editable Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "bf49ba2a40d0d0dccee4d5de7381659b106dd89a"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Premium Chocolate Local SCANDINAVIA Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "8e4d311466783d8215a38b08bee3cb2b3bfcf40f"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "9e88b5726590ab30642999a28a301e3fbcebc762"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "name": "Published Security Policy - Restricted Visibility", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Security Policy - Restricted Visibility", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_VISIBILITY_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "3c0070e420882e3e18f6097811cb60a67239003b"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local SCANDINAVIA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "7f3c1933b61e900457ea6e2aab750303882873d4"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "b0c960759e48c0fcdcb650417179a614da95e866"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Local SCANDINAVIA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "6f603fcc63415e266dc35cf2314d31357a2966bf"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "3c12728b06ecfafeeb74482ea7b7296b180765f9"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "dc9b8ffa0591a1b2956c07fa5dc10ff477c84f4e"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "495fa4f08769a021cfa907dfb7a903fade9bd19a"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "e3b647e172a89e1e7cbdd2964faff1bca8dcf520"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "6870cca056b54cd400a9fbd4fe75513e69cedcdd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "RMMC", "values": [{"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "container_name": "01. MC - Rocher", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "bb01cf85444107f22341d2b88421f0cbaade0bf9"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E023"}, "display_value": "MULTI COUNTRY EUROPE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "8f497ce53d23899c7c09aa5a7ca69c9f55c3a62d"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E22"}, "display_value": "SCANDINAVIA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "ca70a6d55e4277ecbef2a01a593c614501cbcf74"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "3e9d669ab1047383d0416ba40af75744148c94c8"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "0e241fc386dcd91baa31a409e297169fe4a352c2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "2e3e0f2be0e487b540d9b63cb8c0e9ed9c6b1bb6"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "359c98154f230a60acc6b4eb048e129411d7a778"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "b3698893fc223e8371f4e4c0d560d0536c724a09"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "e92f9f10c0c29dda8261218c2c72a0baa66472f2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "15dff42c3b196ba3ae5b3c2ea33f00e347e6f654"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "0ae044cd9dddf86cd9406c9edc3996b18c430be0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "name": "AMMC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AMMC", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LOCAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "7806fed6127b50c21f6b03e1f7b63f3dedc1e8d1"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "RMMC", "values": [{"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "4c8a2d6e178638bfacfeaf3f7f6f1000304693a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "name": "Product Asset Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Asset Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCT_ASSET_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of local comm"}, "display_value": "Local adaptation of local comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of local comm"}, "display_value": "Local adaptation of local comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "5a1ae26558efdc03336c0df838dd9e7c2a51c687"}, "metadata_element": {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "name": "Market Unit", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market Unit", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETUNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "MARKET_UNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "container_name": "Read Only", "container_type_id": "L3 - Agency Structure", "container_type_name": "L3 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "55530f721f18c847e35d7c828edf53461b5014b0"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "330bb6f68316aab5c45f9fe34e047cce573c67cc"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "name": "Agency Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "AGENCY_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "e30e90d694f9935d4c15c4c78891beed8853a272"}, "metadata_element": {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "name": "Published Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "PUBLISHED_ASSET_SP_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "23b155c32d5c6142914b41458234c100812bbec8", "container_name": "Oliver", "container_type_id": "L2 - Agency Structure", "container_type_name": "L2 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.AGENCY", "tabular": false, "value_id": {"uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "originator_id": "23b155c32d5c6142914b41458234c100812bbec8", "inherited_field_id": "48fcbc397986aca5bb8722a95197dd0a46f19b4e"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_AGENCY", "column_name": "AGENCY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "container_name": "Z - Exchange", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "YY"}, "display_value": "AGENCIES", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Final Approver BPS ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}], "asset_lock_state_last_update_date": "2026-01-14T14:28:20.48+01:00", "content_lock_state_last_update_date": "2026-01-14T14:23:42.103+01:00"}, "language_code": null, "language_name": null, "subject_title": null, "file_extension": ".mp4", "asset_type_name": null, "file_size_bytes": null, "duration_seconds": null, "upload_directory": "c61cb01650b9ca8e8a9e27f9d47a5f8273753ed9", "local_campaign_id": "C000000794", "original_filename": "kinder-joy_videoE2E", "global_master_folder_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "global_master_campaign_id": "C000000783"} 2026-01-16 20:41:31.151467 \N 15 MKWzht master_asset_created {"id": 15, "tags": null, "status": "active", "width_px": null, "height_px": null, "mime_type": "image/jpeg", "asset_type": null, "brand_code": null, "brand_name": null, "categories": null, "created_at": "2026-01-16T20:54:05.60229", "deleted_at": null, "is_deleted": false, "updated_at": "2026-01-16T20:54:05.60229", "description": "Box File ID: 2105225346520\\nBox URL: https://app.box.com/file/2105225346520\\nDAM Asset ID: a195f04ddd6a78d22fdf4953b46f9210d50b70a8", "ingested_at": "2026-01-16T20:54:05.60229", "ingested_by": null, "opentext_id": "a195f04ddd6a78d22fdf4953b46f9210d50b70a8", "tracking_id": "MKWzht", "aspect_ratio": null, "country_code": null, "country_name": null, "full_metadata": {"name": "kinder joy 2.jpg", "links": {"links": [], "source_id": "a195f04ddd6a78d22fdf4953b46f9210d50b70a8"}, "locked": false, "deleted": false, "expired": false, "version": 1, "asset_id": "a195f04ddd6a78d22fdf4953b46f9210d50b70a8", "metadata": {"id": "ECOMMERCE", "name": "Marketing Asset", "type": "com.artesia.metadata.MetadataModel", "legacy_id": 116, "metadata_element_list": [{"id": "FERRERO.CATEGORY.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200054, "metadata_element_list": [{"id": "FERRERO.FIELD.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Status", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.CONTENT_STATUS", "edit_type": "COMBO_NOTNULL", "facetable": false, "searchable": true, "table_name": "FERRERO_CONTENT_STATUS_MD", "column_name": "CONTENT_STATUS", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9215, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRER.CATEGORY.ASSET_INFO", "name": "Asset Info", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200022, "metadata_element_list": [{"id": "FERRERO.FIELD.MKTG.ASSET TYPE", "name": "Asset Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "brandbook"}, "display_value": "Brand Book", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.ASSETTYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.FISCAL YEAR", "name": "Release Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2028/2029"}, "display_value": "2028/2029", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Release Fiscal Year", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_DOMAIN_FISCAL_YEAR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "FISCAL__YEAR", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "name": "Main Languages", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1210, "metadata_element_list": [{"id": "MAIN_LANGUAGES", "name": "MAIN LANGUAGES", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "MAIN LANGUAGES", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MAIN LAGUAGES_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MAIN_LANGUAGE_TABLE", "column_name": "MAIN_LANGUAGE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "parent_table_name": "Main Languages", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.ASSET DESCRIPTION", "name": "Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Description", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "DESCR", "data_length": 249, "description": "Descriptive information", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.FLAVOUR", "name": "Flavour", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Flavour", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.FLAVOUR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FLAVOUR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.SIZE", "name": "Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Size", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.SIZE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SIZE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1241, "metadata_element_list": [{"id": "FERRERO.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Compliance", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ASSETCOMPLIANCE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_COMPLIANCE", "column_name": "ASSET_COMPLIANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "parent_table_name": "Asset Compliance", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.TAG DETAILS", "name": "Tag Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 118, "metadata_element_list": [{"id": "ARTESIA.FIELD.TAG", "name": "Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "food", "field_value": {"type": "string", "value": "food"}, "display_value": "food", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Tag", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "food", "field_value": {"type": "string", "value": "food"}, "display_value": "food", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "candy", "field_value": {"type": "string", "value": "candy"}, "display_value": "candy", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "text", "field_value": {"type": "string", "value": "text"}, "display_value": "text", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "ball", "field_value": {"type": "string", "value": "ball"}, "display_value": "ball", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.TAGS", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "OTMM_TAGS", "column_name": "TAG", "data_length": 80, "description": "Tag", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG CONFIDENCE", "name": "Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 85.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Confidence", "values": [{"value": {"type": "decimal", "value": 85.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 76.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 61.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 60.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Confidence", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG TYPE", "name": "Tag Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Tag Type", "values": [{"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "TAG_TYPE", "data_length": 10, "description": "Tag Type", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED BY", "name": "Associated By", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Associated By", "values": [{"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_BY", "data_length": 10, "description": "Associated By", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED DATE", "name": "Associated Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-09T16:32:11.107+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Associated Date", "values": [{"value": {"type": "dateTime", "value": "2026-01-09T16:32:11.107+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2026-01-09T16:32:11.107+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2026-01-09T16:32:11.11+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2026-01-09T16:32:11.11+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_DATE", "data_length": 10, "description": "Associated Date", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.STATE", "name": "Global/Local", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "GLOBAL"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO_NOTNULL", "facetable": true, "searchable": true, "table_name": "FERRERO_IC_ASSET_DETAILS", "column_name": "ASSET_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.ASPECT RATIO", "name": "Aspect Ratio (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio (Marketing)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASPECT_RATIO", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASPECT_RATIO", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "name": "Tag (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1222, "metadata_element_list": [{"id": "MARKETING_TAG", "name": "Marketing Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Marketing Tag", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.DOMAIN.TAG", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TAG_MARKET", "column_name": "TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "parent_table_name": "Tag (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.TAGS", "name": "Auto-Generated Tags", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Auto-Generated Tags", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "AUTO_GENERATED_TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CERTIFIER", "name": "Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approver", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.MARKETING.FIELD.APPROVAL DATE", "name": "Approval__Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approval__Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.LEGAL APPROVAL DATE", "name": "Legal Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CERTIFIER", "name": "IA&CC Certifier", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Certifier", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CC APPROVAL DATE", "name": "IA&CC Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "name": "Extended Approval", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1230, "metadata_element_list": [{"id": "FERRERO.FIELD.EXTENDED.APPROVAL", "name": "Extended Approval required by:", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended Approval required by:", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COMMENTS", "name": "Comment", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comment", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "COMMENTS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.DATE", "name": "Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USERS", "name": "User ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "User ID", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "USERS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXTENDED.JOBID", "name": "Extended JobID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended JobID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.MIGRATION.INDEX", "name": "Migration Index", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Migration Index", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MIGRATION.INDEX", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MIGRATION_INDEX", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "FERRERO_MARKET_MARKETING_CREATOR", "name": "Marketing Creator", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Marketing Creator", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.CREATOR", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MARKETING_CREATOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "ARTESIA.FIELD.IS LATEST VERSION", "name": "Is Latest Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Y"}, "display_value": "Yes", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Is Latest Version", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.YES_NO", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "IS_LATEST_VERSION", "data_length": 1, "description": "Is this the latest version? (Y/N)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET VERSION", "name": "Asset Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 1}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Version", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "INTEGER", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "VERSION", "data_length": 12, "description": "Version number of asset", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET_ID", "name": "Asset ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "a195f04ddd6a78d22fdf4953b46f9210d50b70a8"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset ID", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "LOGICAL_UOI_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.ECOMMERCE STATUS", "name": "Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "PENDING"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Status", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "ASSET_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CREATOR", "name": "Uploaded by", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Uploaded by", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_USER_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.FIELD.CREATION DATE", "name": "Upload Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-09T16:31:22.767+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Upload Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_DT", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.ASSET NAME", "name": "Asset Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "kinder joy 2.jpg"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Name", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "description": "Original name of master object", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.CONTENT TYPE", "name": "Content Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "BITMAP"}, "display_value": "Image", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Type", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.CONTENT_TYPES", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "CONTENT_TYPE", "data_length": 8, "description": "Content Type", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.MIME TYPE", "name": "File Extension", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "image/jpeg"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Extension", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_MIME_TYPE", "data_length": 80, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.FILE.SIZE", "name": "File Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "long", "value": 13800}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Size", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "LONG", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_SIZE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP RESOLUTION", "name": "Bitmap Resolution", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 72}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Resolution", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_RESOLUTION", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP WIDTH", "name": "Bitmap Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 265}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Width", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_WIDTH", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP HEIGHT", "name": "Bitmap Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 190}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Height", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_HEIGHT", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "name": "Approval Metadata", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1249, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.DEPARTMENT", "name": "Department", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Department", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "DEPARTMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.CERTIFIER", "name": "Certifier", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Certifier", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL DATE", "name": "Approval Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Approval Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "APPROVAL_DATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.COMMENT", "name": "Comments", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comments", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "COMMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.TYPE OF APPROVAL", "name": "Type of Approval", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Approval", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "TYPE_OF_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL STATUS", "name": "Approval Status", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Approval Status", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "APPROVAL_STATUS", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.SUB JOBID", "name": "Sub Job Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sub Job Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.VIDEO.BIT_RATE", "name": "Bitrate", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitrate", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "BIT_RATE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.EMBEDDED.FIELD.DURATION", "name": "Duration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Duration", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "DURATION_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.ASPECT RATIO", "name": "Aspect Ratio", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "ASPECT_RATIO", "data_length": 30, "displayable": false, "instructions": "ASPECT_RATIO", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME HEIGHT", "name": "Frame Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Height", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_HEIGHT", "data_length": 12, "displayable": true, "instructions": "FRAME_HEIGHT", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME WIDTH", "name": "Frame Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Width", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_WIDTH", "data_length": 12, "displayable": true, "instructions": "FRAME_WIDTH", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.ASPECT.RATIO.POC", "name": "Aspect Ratio(POC)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio(POC)", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASPECT_RATIO_TABLE", "column_name": "ASPECT_RATIO", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "PRODUCT.DETAILS", "name": "Product Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200029, "metadata_element_list": [{"id": "FERRERO.TABLE.EANCODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1208, "metadata_element_list": [{"id": "EAN_CODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "EAN CODE/ 77 CODE", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "EAN.CODE", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "EAN_CODE", "column_name": "EAN_CODE_DESCRIPTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "COUNTRY", "name": "COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "EAN_CODE", "column_name": "COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKETING.ADVANCE.PRODUCT.LINK", "name": "Asset-to-product relation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset-to-product relation", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_MARKETING_ADVANCE_PRODUCT_LINK", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ADVANCE_PRODUCT_LINK", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 10182, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.SUB BRAND", "name": "Sub-Brands", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Sub-Brands", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.SUBBRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "SUB_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT WEIGHT", "name": "Product Weight", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Weight", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_WEIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.CONSUMER UNIT PACKAGING", "name": "Consumer Unit Packaging", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Consumer Unit Packaging", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PACK", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "CONSUMER_UNIT_PACKAGING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.4 DIGIT CODE", "name": "4 Digit Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "4 Digit Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "DIGITCODE", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERREO.ECOM.RETAILER_SPECIFIC_FIELD", "name": "Retailer Specific", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Retailer Specific", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "RETAILER_SPECIFIC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "cascading_group_id": "FERRERO.RETAILER.SPECIFIC", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY START PERIOD", "name": "Asset validity start period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-11T00:00:00+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity start period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_STARTING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY END PERIOD", "name": "Asset validity end period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-03-31T00:00:00+02:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity end period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_ENDING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.ASSET.NAMING.CONVENTION", "name": "Does asset need GS1 naming convention", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Does asset need GS1 naming convention", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASSETNAMINGCONVENTION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_NAMING_CONVENTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9515, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT VIEW", "name": "Product View", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product View", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT VIEW", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_VIEW", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT ANGLE", "name": "Product Angle", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Angle", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT.ANGLE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_ANGLE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT STATE", "name": "Product State", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product State", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT STATE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PROMOTION ID", "name": "Promo ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Promo ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROMO_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.BUSINESS.ASSET TYPE", "name": "Asset Type (eDAM)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Type (eDAM)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "OTMM.DOMAIN.OTMM_ASSETTYPE_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_BUSINESS_INFO", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7244, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200048, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.AGENCY NAME", "name": "Agency Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency Name", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.AGENCY_NAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AGENCY_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7336, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.CREATIX", "name": "CreativeX", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200059, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.CREATIVEX", "name": "Confidence", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1245, "metadata_element_list": [{"id": "FERRERO.TAB.FIELD.CREATIVEX", "name": "Platform > Rating (%)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Platform > Rating (%)", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_CREATIVEX", "column_name": "CREATIVEX_NEW", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CREATIVEX", "parent_table_name": "Confidence", "cascading_group_id": "FERRERO.CREATIVEX.CHAR", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.CREATIVEX LINK", "name": "CreativeX Hyperlink", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "CreativeX Hyperlink", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_CREATIVEX", "column_name": "CREATIVE_LINK", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.IP_RIGHTS", "name": "IP Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200046, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.IPRIGHT", "name": "IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IP Rights", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.IPRIGHTS", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IP_RIGHTS", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.BUYOUT", "name": "Touchpoint Scope", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Touchpoint Scope", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.TOTAL_BUYOUT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TOTAL_BUYOUT", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.FERRERO PROPERTY", "name": "Ferrero Property", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Ferrero Property", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.FERRERO_PROPERTY", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FERRERO_PROPERTY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200035, "metadata_element_list": [{"id": "FERRERO.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1209, "metadata_element_list": [{"id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "name": "IP Coverage, Area, Region & Market Unit", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Coverage, Area, Region & Market Unit", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "IPCOVERAGE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "cascading_group_id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHT TYPE", "name": "Copyright Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHT_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.MEDIATYPE", "name": "Media Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Media Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MEDIA_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "MEDIA_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE FROM", "name": "Expiration of Usage - From", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - From", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_FROM", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE TO", "name": "Expiration of Usage - To", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - To", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_TO", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO._DURATION", "name": "IP Duration", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Duration", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "ECOM_DURATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHTTYPE DETAILS", "name": "Copyright Type Details", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type Details", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHTTYPE_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 6, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.MARKET.VID_STAT_RIGHT", "name": "Video & Static Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200047, "metadata_element_list": [{"id": "FERRERO.MARKET.VID_N_STAT", "name": "Video and Static Right", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video and Static Right", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VID_AND_STAT_RIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.VID_STAT_TYPE", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1221, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.TYPE_VID", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Video & Static Right", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TYPE_VID_STAT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_MARKET_TYPE_VID_STAT", "column_name": "TYPE_OF_VIDEO_STATIC_RIGHT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.VID_STAT_TYPE", "parent_table_name": "Type of Video & Static Right", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKET.PROD_COMPANY", "name": "Production House", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Production House", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.PRODUCT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200050, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.LICENSIN", "name": "Licensing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Licensing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSING", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "cascading_group_id": "FERRERO.MARKET.CG.LICENSE", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.SPOT_DETAILS", "name": "Spot Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200049, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.SPOT_VERSION", "name": "Spot Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Version", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_VERSION", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_VERSION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.SPOT_TYPE", "name": "Spot Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_TYPE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.DIRECTOR_NAME", "name": "Director Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Director Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "DIRECTOR_NAME", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VIDEO_POST_PROD_COMPANY", "name": "Video Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VID_POST_PROD_CONTACT", "name": "Video Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_COMPANY", "name": "Audio Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_CONTACT", "name": "Audio Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.BROADCASTER.CODE", "name": "Broadcaster Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Broadcaster Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BROADCASTER_CODE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.TECHNICAL_VALIDATION", "name": "Technical Validation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Technical Validation", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TECHNICAL_VALIDATION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS", "name": "Media Analysis", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1002, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "name": "Categories", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 105, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY NAME", "name": "Category Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "others_"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Category Name", "values": [{"value": {"type": "string", "value": "others_"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "NAME", "data_length": 100, "description": "Category Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY CONFIDENCE", "name": "Category Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 1.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Category Confidence", "values": [{"value": {"type": "decimal", "value": 1.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "CONFIDENCE", "data_length": 10, "description": "Category Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES COUNT", "name": "Faces Count", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Faces Count", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACECOUNT", "column_name": "COUNT", "data_length": 10, "description": "Faces Count", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "name": "Face Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 106, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME", "name": "Recognized Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME", "data_length": 2000, "description": "Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME CONFIDENCE", "name": "Recognized Name Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME_CONFIDENCE", "data_length": 10, "description": "Name Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE", "name": "Person Age", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE", "data_length": 10, "description": "Person Age", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE CONFIDENCE", "name": "Person Age Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Person Age Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_CONFIDENCE", "data_length": 10, "description": "Person Age Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER", "name": "Gender", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Gender", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.GENDER", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER", "data_length": 40, "description": "Gender", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER CONFIDENCE", "name": "Gender Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Gender Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER_CONFIDENCE", "data_length": 10, "description": "Gender Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.FACE COORDS", "name": "Face Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "FACE_COORDS", "data_length": 200, "description": "Face Coordinates like postion, height,width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE GROUP", "name": "Person Age Group", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age Group", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.AGE GROUP", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_GROUP", "data_length": 10, "description": "Person Age Group", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "name": "Safe Content", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 107, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONTENT TYPE", "name": "Safe Content Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Safe Content Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENTS", "data_length": 20, "description": "Safe Content Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONFIDENCE", "name": "Content Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Content Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENT_CONFIDENCE", "data_length": 10, "description": "Safe Content Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "name": "Colors", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 108, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.NAME", "name": "Color", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "White"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Color", "values": [{"value": {"type": "string", "value": "White"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "NAME", "data_length": 25, "description": "COLOR", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.PROPORTION", "name": "Color Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Color Confidence", "values": [{"is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "PROPORTION", "data_length": 10, "description": "Proportion", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.FOREGROUND", "name": "Foreground Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "White"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Foreground Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "FOREGROUND", "data_length": 25, "description": "Foreground Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.BACKGROUND", "name": "Background Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "White"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Background Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "BACKGROUND", "data_length": 25, "description": "Background Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.ISBW", "name": "Is Black and White", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "false"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Is Black and White", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "ISBW", "data_length": 10, "description": "Is Black and White", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "name": "Captions", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 109, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION TEXT", "name": "Caption Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "a close up of food"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Caption Text", "values": [{"value": {"type": "string", "value": "a close up of food"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "TEXT", "data_length": 2000, "description": "Caption Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION CONFIDENCE", "name": "Caption Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 50.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Caption Confidence", "values": [{"value": {"type": "decimal", "value": 50.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "CAPTION_CONFIDENCE", "data_length": 10, "description": "Caption Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "name": "Image Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 110, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.IMAGE TYPE", "name": "Analysis Image Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "clip_art"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Analysis Image Type", "values": [{"value": {"type": "string", "value": "clip_art"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_IMAGE_TYPE", "column_name": "TYPE", "data_length": 100, "description": "Image Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "parent_table_name": "Image Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.DATE", "name": "Date: Media Analysis", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-09T16:32:11+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date: Media Analysis", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MEDIA_ANALYSIS_DATE", "data_length": 25, "description": "Date Media Analysis was done on the asset.", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR LANGUAGE", "name": "Image Text Language", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "unk"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Image Text Language", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "LANGUAGE", "data_length": 10, "description": "OCR data language", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR TEXT", "name": "Text on Image", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Text on Image", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "TEXT", "data_length": 4000, "description": "OCR Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "name": "Embedded Brand Info", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 119, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.NAME", "name": "Embedded Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Embedded Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Embedded Brand Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.CONFIDENCE", "name": "Embedded Brand Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Embedded Brand Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Embedded Brand Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.COORDINATES", "name": "Embedded Brand Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Embedded Brand Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "COORDINATES", "data_length": 200, "description": "Embedded Brand Coordinates like position, height, width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "HYBRIS.PRODUCT.INFO", "name": "PIM Item Reference", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200027, "metadata_element_list": [{"id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "name": "Hybris Item Reference", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1206, "metadata_element_list": [{"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ID", "name": "Hybris Item ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ID", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT TAG NAME", "name": "Hybris Assignment Label", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Assignment Label", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_TAG_NAME", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ATTRIBUTE NAME", "name": "Hybris Attribute Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Attribute Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ATTRIBUTE_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT CATALOG NAME", "name": "Hybris Catalog Mnemonic", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Catalog Mnemonic", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_CATALOG_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT PK", "name": "Hybris Item PK", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item PK", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_PK", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.SYSTEM ID", "name": "Hybris System ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris System ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "SYSTEM_ID", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.ASSIGNED", "name": "Assigned", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Assigned", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "ASSIGNED", "column_name": "ASSIGNED", "data_length": 38, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PIM TYPE", "name": "PIM Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "PIM Type", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_PIM_TYPE", "column_name": "PIM_TYPE", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS VIDEO", "name": "Media Analysis Video", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1003, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "name": "Labels", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 113, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.ID", "name": "Label Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "ID", "data_length": 40, "description": "Label Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.NAME", "name": "Label Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "NAME", "data_length": 40, "description": "Label Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.APPEARANCES", "name": "Label Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "APPEARANCES", "data_length": 0, "description": "Label Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "name": "Sentiments", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 114, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.ID", "name": "Sentiment Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "ID", "data_length": 40, "description": "Sentiment Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.NAME", "name": "Sentiment Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "NAME", "data_length": 40, "description": "Sentiment Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.APPEARANCES", "name": "Sentiment Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "APPEARANCES", "data_length": 0, "description": "Sentiment Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.SEEN.DURATION.RATIO", "name": "Sentiment Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Sentiment Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "name": "Keywords", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 115, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.ID", "name": "Keyword Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "ID", "data_length": 40, "description": "Keyword Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.NAME", "name": "Keyword Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "NAME", "data_length": 40, "description": "Keyword Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.APPEARANCES", "name": "Keyword Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Keyword Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "name": "Faces", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 111, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.ID", "name": "Face Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "ID", "data_length": 40, "description": "Face Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.NAME", "name": "Face Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "NAME", "data_length": 40, "description": "Face Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.TITLE", "name": "Face Title", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Title", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "TITLE", "data_length": 249, "description": "Face Title", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.DESCRIPTION", "name": "Face Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Face Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.APPEARANCES", "name": "Face Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "APPEARANCES", "data_length": 0, "description": "Face Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SPEAKER.FACE.ID", "name": "Video Speaker Object Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Speaker Object Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "THUMBNAIL_OBJECT_ID", "data_length": 40, "description": "Video Speaker Object Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.SEEN.DURATION.RATIO", "name": "Face Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "SEEN_DURATION_RATIO", "data_length": 20, "description": "Face Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "name": "Brands", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 112, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.ID", "name": "Video Brand Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "ID", "data_length": 40, "description": "Brand Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.NAME", "name": "Video Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Brand Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.DESCRIPTION", "name": "Video Brand Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Brand Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.WIKIURL", "name": "Video Brand Wiki URL", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Wiki URL", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "WIKIURL", "data_length": 200, "description": "Brand Wiki URL", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.APPEARANCES", "name": "Video Brand Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Brand Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.SEEN.DURATION.RATIO", "name": "Video Brand Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Brand Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "name": "Speeches", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 116, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.ID", "name": "SpeechText Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "SpeechText Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "ID", "data_length": 40, "description": "SpeechText Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXT", "name": "Speech Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Text", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXT", "data_length": 1000, "description": "Speech Text", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXTTYPE", "name": "Speech Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXTTYPE", "data_length": 40, "description": "Speech Type", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.START TIME", "name": "Speech Start Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Start Time", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "START_TIME", "data_length": 40, "description": "Speech Start Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.END TIME", "name": "Speech End Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech End Time", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "END_TIME", "data_length": 40, "description": "Speech End Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "name": "Speakers", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 122, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.ID", "name": "Speaker Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "ID", "data_length": 40, "description": "Speaker Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.NAME", "name": "Speaker Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "NAME", "data_length": 100, "description": "Speaker Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.APPEARANCES", "name": "Speaker Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "APPEARANCES", "data_length": 0, "description": "Speaker Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.FIELDGROUP.LOCALASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200057, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1239, "metadata_element_list": [{"id": "FERRERO.FIELD.COUNTRY", "name": "LOCAL COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "LOCAL COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USER", "name": "USER", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "USER", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_USER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.ASSOCIATION", "name": "TYPE OF ASSOCIATION", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "TYPE OF ASSOCIATION", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_ASSOCIATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.VALUE", "name": "VALUE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "VALUE", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_VALUE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "CG.CATEGORY.FADEL ASSET INFORMATION", "name": "Rights Asset Information", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200064, "metadata_element_list": [{"id": "CG.FIELD.RIGHTS MANAGED", "name": "Fadel IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fadel IP Rights", "enabled": true, "options": "", "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_RIGHTS_MANAGED_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGED", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.NEEDS RIGHTS MANAGEMENT", "name": "Needs Rights Management", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "10", "field_value": {"type": "string", "value": "N"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Needs Rights Management", "enabled": true, "options": "", "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_NEEDS_RIGHTS_MANAGEMENT_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "NEEDS_RIGHTS_MANAGEMENT", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.RIGHTS MANAGEMENT DESCRIPTION", "name": "Rights Management Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Rights Management Description", "enabled": true, "options": "", "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGEMENT_DESCRIPTION", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.RIGHTS MANAGEMENT STATUS", "name": "Rights Management Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Rights Management Status", "enabled": true, "options": "", "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_RIGHTS_MANAGEMENT_STATUS_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGEMENT_STATUS", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.FORCE SYNC", "name": "Force Sync", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Force Sync", "enabled": true, "options": "", "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_FORCE_SYNC_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "FORCE_SYNC", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.LAST SYNC TIME", "name": "Date of last data sync", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date of last data sync", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "LAST_SYNC_TIME", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "CG.CATEGORY.FADEL RIGHTS INFORMATION", "name": "Rights Information", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200065, "metadata_element_list": [{"id": "CG.TABLE.RIGHTS", "name": "Rights", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1256, "metadata_element_list": [{"id": "CG.FIELD.RIGHT TERRITORIES", "name": "Territory", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Territory", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "TERRITORY", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT USES", "name": "Use", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Use", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "USAGE", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT IN DATE", "name": "In Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "In Date", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "IN_DATE", "data_length": 10, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT OUT DATE", "name": "Out Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Out Date", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "OUT_DATE", "data_length": 10, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "saved_values_behavior_mode": 0}]}]}, {"id": "CG.CATEGORY.FADEL AGREEMENTS AND PARTIES", "name": "Agreements and Parties", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200067, "metadata_element_list": [{"id": "CG.TABLE.PARTIES.AGREEMENTS VW", "name": "Customized Table Parties and Agreements", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1258, "metadata_element_list": [{"id": "CG.FIELD.AGREEMENT NUMBER VW", "name": "Agreement Number ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Number ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_NUMBER", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT DESCRIPTION VW", "name": "Agreement Description ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Description ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_DESCRIPTION", "data_length": 2000, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT START DATE VW", "name": "Agreement Start Date ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Start Date ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_START_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT END DATE VW", "name": "Agreement End Date ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement End Date ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_END_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY NAME VW", "name": "Party Name ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Name ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_NAME", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY ROLE VW", "name": "Party Role ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Role ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_ROLE", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY EMAIL ADDRESS VW", "name": "Party Email Address ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Email Address ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_EMAIL_ADDRESS", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY PHONE NUMBER VW", "name": "Party Phone Number ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Phone Number ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_PHONE_NUMBER", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PRIMARY PARTY CONTACT VW", "name": "Primary Party Contact ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Primary Party Contact ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PRIMARY_PARTY_CONTACT", "data_length": 200, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 8, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}], "has_multilingual_fields": false}, "mime_type": "image/jpeg", "path_list": [{"parents": [{"id": "90962e8228075df2ada17d7fb668aaca95c87092", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "90962e8228075df2ada17d7fb668aaca95c87092", "sequence_number": 0}, {"id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "name": "MASTER FOR FER ROCH", "container_state": "NORMAL", "original_uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "sequence_number": 0}, {"id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "name": "01. DE - Rocher ", "container_state": "NORMAL", "original_uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "sequence_number": 0}, {"id": "091216b59cad7f1ea815164c26db27e350c54023", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "sequence_number": 0}, {"id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "name": "01. Rocher", "container_state": "NORMAL", "original_uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "sequence_number": 0}, {"id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "name": "01. Ferrero Rocher", "container_state": "NORMAL", "original_uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "sequence_number": 0}, {"id": "93b0968611de11160ed068afeb9930b9965bd5ff", "name": "03. Premium Chocolate", "container_state": "NORMAL", "original_uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "sequence_number": 0}], "complete": true, "sequence_number": 3, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "1a0d163b5afa316ab4221ef1be7f2c836459c723", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "1a0d163b5afa316ab4221ef1be7f2c836459c723", "sequence_number": 0}, {"id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "name": "LOCAL ADP FER ROCH 2", "container_state": "NORMAL", "original_uoi_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "sequence_number": 0}, {"id": "9f8e8b04cba52ef52299cf50029390c69a2b7744", "name": "25-26", "container_state": "NORMAL", "original_uoi_id": "9f8e8b04cba52ef52299cf50029390c69a2b7744", "sequence_number": 0}, {"id": "4b9c4af560c14507ba1bfa099e78a256097c80c6", "name": "02. Campaign", "container_state": "NORMAL", "original_uoi_id": "4b9c4af560c14507ba1bfa099e78a256097c80c6", "sequence_number": 0}, {"id": "65c70f3f1f1ed4438d2e66cdfe44ee72cecf1b01", "name": "01. Standard", "container_state": "NORMAL", "original_uoi_id": "65c70f3f1f1ed4438d2e66cdfe44ee72cecf1b01", "sequence_number": 0}, {"id": "121deaf433dfae27519f93797090b905252d4bc0", "name": "01. Denmark", "container_state": "NORMAL", "original_uoi_id": "121deaf433dfae27519f93797090b905252d4bc0", "sequence_number": 0}, {"id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "name": "SCANDINAVIA", "container_state": "NORMAL", "original_uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "sequence_number": 0}, {"id": "f2649309eb916c5c25bb309e3db061042c3eecca", "name": "01. MC - Rocher", "container_state": "NORMAL", "original_uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "sequence_number": 0}, {"id": "091216b59cad7f1ea815164c26db27e350c54023", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "sequence_number": 0}, {"id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "name": "01. Rocher", "container_state": "NORMAL", "original_uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "sequence_number": 0}, {"id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "name": "01. Ferrero Rocher", "container_state": "NORMAL", "original_uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "sequence_number": 0}, {"id": "93b0968611de11160ed068afeb9930b9965bd5ff", "name": "03. Premium Chocolate", "container_state": "NORMAL", "original_uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "90962e8228075df2ada17d7fb668aaca95c87092", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "90962e8228075df2ada17d7fb668aaca95c87092", "sequence_number": 0}, {"id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "name": "MASTER FOR FER ROCH", "container_state": "NORMAL", "original_uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "sequence_number": 0}, {"id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "name": "01. DE - Rocher ", "container_state": "NORMAL", "original_uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "sequence_number": 0}, {"id": "bfbc248a12a4bf0382406620f0d9ec41ff42e35e", "name": "01. Ferrero Rocher", "container_state": "NORMAL", "original_uoi_id": "bfbc248a12a4bf0382406620f0d9ec41ff42e35e", "sequence_number": 0}, {"id": "3d7debea6815ae46c9598191b1c645007666292a", "name": "03 . Premium Chocolate", "container_state": "NORMAL", "original_uoi_id": "3d7debea6815ae46c9598191b1c645007666292a", "sequence_number": 0}, {"id": "c0bb10be2b8f96ee4d27a2dfb7e0d03de68cf114", "name": "DE", "container_state": "NORMAL", "original_uoi_id": "c0bb10be2b8f96ee4d27a2dfb7e0d03de68cf114", "sequence_number": 0}, {"id": "b124e1ed196028bdd0e2c093e28078ca8d9ad462", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "b124e1ed196028bdd0e2c093e28078ca8d9ad462", "sequence_number": 0}, {"id": "68ce80e8c8a30badb82dabfd823886a6fa6fe309", "name": "Y - Geography", "container_state": "NORMAL", "original_uoi_id": "68ce80e8c8a30badb82dabfd823886a6fa6fe309", "sequence_number": 0}], "complete": true, "sequence_number": 3, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "1a0d163b5afa316ab4221ef1be7f2c836459c723", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "1a0d163b5afa316ab4221ef1be7f2c836459c723", "sequence_number": 0}, {"id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "name": "Read Only", "container_state": "NORMAL", "original_uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "sequence_number": 0}, {"id": "23b155c32d5c6142914b41458234c100812bbec8", "name": "Oliver", "container_state": "NORMAL", "original_uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "sequence_number": 0}, {"id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "name": "Z - Exchange", "container_state": "NORMAL", "original_uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}], "creator_id": "1003", "asset_state": "NORMAL", "checked_out": false, "folder_path": "", "content_size": 13800, "content_type": "BITMAP", "content_state": "NORMAL", "date_imported": "2026-01-09T16:31:22.767+01:00", "import_job_id": 224850, "subscribed_to": false, "collection_ids": [], "latest_version": true, "legacy_model_id": 116, "content_editable": true, "import_user_name": "bizAdmin", "date_last_updated": "2026-01-15T14:16:20.48+01:00", "metadata_model_id": "ECOMMERCE", "original_asset_id": "a195f04ddd6a78d22fdf4953b46f9210d50b70a8", "rendition_content": {"preview_content": {"id": "a917867bc8a02ca95dd797eac58124f14657b574", "url": "/otmmapi/v6/renditions/a917867bc8a02ca95dd797eac58124f14657b574", "name": "kinder joy 2-S.png", "width": 265, "height": 190, "mime_type": "image/png", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "PREVIEW", "content_path": "data\\\\repository\\\\screen\\\\vol0\\\\186\\\\kinder joy 2-S_a917867bc8a02ca95dd797eac58124f14657b574.png", "content_size": 77502, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "thumbnail_content": {"id": "9c56a35c68c1faa76793280deec5a6c7ced92544", "url": "/otmmapi/v6/renditions/9c56a35c68c1faa76793280deec5a6c7ced92544", "name": "kinder joy 2-T.png", "width": 265, "height": 190, "mime_type": "image/png", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "THUMBNAIL", "content_path": "data\\\\repository\\\\thumb\\\\vol0\\\\201\\\\kinder joy 2-T_9c56a35c68c1faa76793280deec5a6c7ced92544.png", "content_size": 77502, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_content_info": {"master_content": {"id": "0457dfa8bbd32e69d36097989e98a0e0d6b8ea8c", "url": "/otmmapi/v6/renditions/0457dfa8bbd32e69d36097989e98a0e0d6b8ea8c", "name": "kinder joy 2.jpg", "width": 265, "height": 190, "mime_type": "image/jpeg", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\227\\\\kinder joy 2_0457dfa8bbd32e69d36097989e98a0e0d6b8ea8c.jpg", "content_size": 13800, "unit_of_size": "BYTES", "content_checksum": "dd2c2f078389c2ee63ea2bc1a9e868b6", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_state_user_id": "1001", "master_content_info": {"id": "0457dfa8bbd32e69d36097989e98a0e0d6b8ea8c", "url": "/otmmapi/v6/renditions/0457dfa8bbd32e69d36097989e98a0e0d6b8ea8c", "name": "kinder joy 2.jpg", "width": 265, "height": 190, "mime_type": "image/jpeg", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\227\\\\kinder joy 2_0457dfa8bbd32e69d36097989e98a0e0d6b8ea8c.jpg", "content_size": 13800, "unit_of_size": "BYTES", "content_checksum": "dd2c2f078389c2ee63ea2bc1a9e868b6", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "delivery_service_url": "https://ppr.dam.ferrero.com/adaptivemedia/rendition?id=a195f04ddd6a78d22fdf4953b46f9210d50b70a8", "product_associations": false, "security_policy_list": [{"id": 9525, "name": "Premium Chocolate Local DE Editable Ferrero Rocher", "status": "NORMAL", "created_by": "1003", "create_date": "2024-11-26T10:08:39.973+01:00", "description": "Premium Chocolate Local DE Editable Ferrero Rocher", "ownership_type": "PUBLIC"}, {"id": 11499, "name": "Premium Chocolate Local SCANDINAVIA Editable Ferrero Rocher", "status": "NORMAL", "created_by": "1003", "create_date": "2025-12-24T11:50:58.833+01:00", "description": "Premium Chocolate Local SCANDINAVIA Editable Ferrero Rocher", "ownership_type": "PUBLIC"}], "thumbnail_content_id": "9c56a35c68c1faa76793280deec5a6c7ced92544", "content_state_user_id": "1003", "content_state_user_name": "OTMM BusinessAdmin", "asset_lock_state_user_id": "1001", "metadata_state_user_name": "otmm admin", "access_control_descriptor": {"permissions_map": {"entry": [{"key": "text.securityPolicy.permission.Custom04Permission", "value": true}, {"key": "text.securityPolicy.permission.ContentEditPermission", "value": true}, {"key": "text.securityPolicy.permission.AssetViewPermission", "value": true}, {"key": "text.securityPolicy.permission.ProjectViewPermission", "value": true}, {"key": "text.securityPolicy.permission.MembershipEditPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom03Permission", "value": true}, {"key": "text.securityPolicy.permission.MetaDataEditPermission", "value": true}, {"key": "text.securityPolicy.permission.EditParentsPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom02Permission", "value": true}, {"key": "text.securityPolicy.permission.ExportPermission", "value": true}, {"key": "text.securityPolicy.permission.SummaryViewPermission", "value": true}, {"key": "text.securityPolicy.permission.PreviewViewPermission", "value": true}, {"key": "text.securityPolicy.permission.SubscribePermission", "value": true}, {"key": "text.securityPolicy.permission.DeleteAssetPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom01Permission", "value": true}]}}, "content_lock_state_user_id": "1003", "asset_state_last_update_date": "2026-01-15T14:16:20.48+01:00", "content_lock_state_user_name": "bizAdmin", "metadata_lock_state_user_name": "tsuper", "content_state_last_update_date": "2026-01-09T16:31:23.157+01:00", "inherited_metadata_collections": [{"container_id": "90962e8228075df2ada17d7fb668aaca95c87092", "container_name": "05. Final Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "90962e8228075df2ada17d7fb668aaca95c87092", "originator_id": "90962e8228075df2ada17d7fb668aaca95c87092", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "05. Final Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "container_name": "MASTER FOR FER ROCH", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "MASTER FOR FER ROCH"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000779"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "MASTER_FOR_FER_ROCH_CQ_LG_DE_PRE_0000779"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local comm on global brands"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Master Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Master Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2026/2027"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "B1"}, "display_value": "Master campaign ready for re-mastering", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ADDITIONALAPPROVER", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.LICENSING", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "d0ef653291e269a7d1ddf0ebfedd1c6ad70b1c59"}, "metadata_element": {"id": "FERRERO.FIELD.LICENSING", "name": "Campaign License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "LICENSING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}}]}, {"container_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "container_name": "01. DE - Rocher ", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "bb01cf85444107f22341d2b88421f0cbaade0bf9"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E006"}, "display_value": "GERMANY", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Local DE Editable Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Premium Chocolate Local DE Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "8f497ce53d23899c7c09aa5a7ca69c9f55c3a62d"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E64"}, "display_value": "GERMANY", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "ca70a6d55e4277ecbef2a01a593c614501cbcf74"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "3e9d669ab1047383d0416ba40af75744148c94c8"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0e241fc386dcd91baa31a409e297169fe4a352c2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "2e3e0f2be0e487b540d9b63cb8c0e9ed9c6b1bb6"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "359c98154f230a60acc6b4eb048e129411d7a778"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "b3698893fc223e8371f4e4c0d560d0536c724a09"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "e92f9f10c0c29dda8261218c2c72a0baa66472f2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "15dff42c3b196ba3ae5b3c2ea33f00e347e6f654"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Extended Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0ae044cd9dddf86cd9406c9edc3996b18c430be0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "name": "AMMC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AMMC", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LOCAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "7806fed6127b50c21f6b03e1f7b63f3dedc1e8d1"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "RMMC", "values": [{"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "4c8a2d6e178638bfacfeaf3f7f6f1000304693a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "name": "Product Asset Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Product Asset Approval Ferrero Rocher Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Asset Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCT_ASSET_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local comm on global brands"}, "display_value": "Local comm on global brands", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "5a1ae26558efdc03336c0df838dd9e7c2a51c687"}, "metadata_element": {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "name": "Market Unit", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market Unit", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETUNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "MARKET_UNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "091216b59cad7f1ea815164c26db27e350c54023", "container_name": "EU", "container_type_id": "GEOGRAPHYLOCAL", "container_type_name": "L4 - GEOGRAPHY LOCAL", "inherited_metadata_values": [{"id": "FERRERO.MARKET.FOLDER.GLOBAL", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "4c4d4bf36bf8b1ace55f990e78d6332a9cb20990"}, "metadata_element": {"id": "FERRERO.MARKET.FOLDER.GLOBAL", "name": "Global/Local (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "LOCAL"}, "display_value": "Local", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local (Marketing)", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "GLOBALLOCAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_AREA", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "3dc200c993ab8263952dc6da1498026f615f45dd"}, "metadata_element": {"id": "MARKETING_AREA", "name": "AREA", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E010"}, "display_value": "EUROPE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "AREA", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "AREA", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "AREA", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "dc7749c3e113ec9e0b9e9a3840ea55673ca5e49f"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "f2d658a3829c2ea158ae70a4b4e7928bcf88f8e2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "972d0258a82de85672bd84d8af68cdb67ad3d3ca"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "1212505ad3fe4c9d7458568f3d95aeb4c4e5c37e"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "9d1dfdef55ff7a3eb03552988ddf729c7a0f5107"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "54f006eeb366121a29ee98da33d437615dcd34e0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "1fd8802010e30d44cebb2f3eb090b12ac550f97d"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "8b6e1d8f7dc3c4671cfc11a2914d838ca3ee3f3b"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "be0dc9a87262ee7fd165237b531ba3b7aa93a260"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "2f99f0f0f9e43fb34df9222c8b73a86fb78e473e"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "container_name": "01. Rocher", "container_type_id": "GLOBALBRAND", "container_type_name": "L3 - BRAND", "inherited_metadata_values": [{"id": "FERRERO.TABULAR.NEW.BRAND", "tabular": true, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "9bb1c183135f5240f09132aef59c4ea48c762381"}, "metadata_element": {"id": "FERRERO.TABULAR.NEW.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF04"}, "display_value": "ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND (Marketing)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF04"}, "display_value": "ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "BRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TABULAR_BRAND", "column_name": "BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.NEW.BRAND", "parent_table_name": "BRAND (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "tabular": true, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "a37b13c02cba799378211e17b73234a0d836f9b6"}, "metadata_element": {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "CQ"}, "display_value": "FERRERO ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND(HARMONIZED)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "CQ"}, "display_value": "FERRERO ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.HARMONIZEDBRAND", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_HARMONIZEDBRAND", "column_name": "HARMONIZEDBRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.HARMONIZEDBRAND", "parent_table_name": "BRAND(HARMONIZED)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "AGENCY.COLLABORATION", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "183d6e0957a9940f9b18ef44f46d957802b63397"}, "metadata_element": {"id": "AGENCY.COLLABORATION", "name": "Agency collaboration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency collaboration", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "AGENCY_COLLABORATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "AGENCY.SHARING", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "d0e2b725ddfdc452cc3ba750bbe8ec059c6b01ba"}, "metadata_element": {"id": "AGENCY.SHARING", "name": "Agency sharing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency sharing", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "AGENCY_SHARING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "CONTENT.SCALING.AGENCYNAME", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "f9dfa695cc5ef8cd3fafada4e44cfdaa1522d58a"}, "metadata_element": {"id": "CONTENT.SCALING.AGENCYNAME", "name": "Content Scaling agency name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Scaling agency name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENTSCALING_AGENCYNAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "container_name": "01. Ferrero Rocher", "container_type_id": "GLOBALSUBCATEGORY", "container_type_name": "L2 - SUBCATEGORY", "inherited_metadata_values": [{"id": "MARKETING_SUBCATEGORY", "tabular": false, "value_id": {"uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "originator_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "inherited_field_id": "3000ad591e09b5c75f85fc2ccbb9ebeb31b3ab78"}, "metadata_element": {"id": "MARKETING_SUBCATEGORY", "name": "SUBCATEGORY", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Mart-Ferrero-Rocher"}, "display_value": "Ferrero Rocher", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "SUBCATEGORY", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "SUBCATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "SUBCATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "tabular": true, "value_id": {"uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "originator_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "inherited_field_id": "2c751ce760d88c0e271925ea5149348106944bfa"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Subcategory Owner", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_SUBCATEGORY_OWNER_TM", "column_name": "SUBCATEGORY_OWNER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "parent_table_name": "Subcategory Owner", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "container_name": "03. Premium Chocolate", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "originator_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E06"}, "display_value": "PREMIUM CHOCOLATE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "originator_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final Approver BPS ", "values": [{"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "1a0d163b5afa316ab4221ef1be7f2c836459c723", "container_name": "00. Master Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "1a0d163b5afa316ab4221ef1be7f2c836459c723", "originator_id": "1a0d163b5afa316ab4221ef1be7f2c836459c723", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00. Master Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "container_name": "LOCAL ADP FER ROCH 2", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "originator_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "LOCAL ADP FER ROCH 2"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "originator_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000780"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "originator_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "LOCAL_ADP_FER_ROC_CQ_LAL_MLT_PRE_0000780"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "originator_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "originator_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "originator_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "originator_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local adaptation of local comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "originator_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Master Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000779"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Master Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "originator_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "originator_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "DK"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "DK"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "SE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "FI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "NO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "IS"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "GL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "originator_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2026/2027"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "originator_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2797"}, "display_value": "Owner, Asset (AssetownerLoG, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2797"}, "display_value": "Owner, Asset (AssetownerLoG, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "originator_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2797"}, "display_value": "Owner, Asset (AssetownerLoG, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2797"}, "display_value": "Owner, Asset (AssetownerLoG, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "originator_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "A3"}, "display_value": "Localized Asset received from Agency", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "originator_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ADDITIONALAPPROVER", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.LICENSING", "tabular": false, "value_id": {"uoi_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "originator_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "inherited_field_id": "d0ef653291e269a7d1ddf0ebfedd1c6ad70b1c59"}, "metadata_element": {"id": "FERRERO.FIELD.LICENSING", "name": "Campaign License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "LICENSING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}}]}, {"container_id": "9f8e8b04cba52ef52299cf50029390c69a2b7744", "container_name": "25-26", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "9f8e8b04cba52ef52299cf50029390c69a2b7744", "originator_id": "9f8e8b04cba52ef52299cf50029390c69a2b7744", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "25-26"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "4b9c4af560c14507ba1bfa099e78a256097c80c6", "container_name": "02. Campaign", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "4b9c4af560c14507ba1bfa099e78a256097c80c6", "originator_id": "4b9c4af560c14507ba1bfa099e78a256097c80c6", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "02. Campaign"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "65c70f3f1f1ed4438d2e66cdfe44ee72cecf1b01", "container_name": "01. Standard", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "65c70f3f1f1ed4438d2e66cdfe44ee72cecf1b01", "originator_id": "65c70f3f1f1ed4438d2e66cdfe44ee72cecf1b01", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "01. Standard"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "121deaf433dfae27519f93797090b905252d4bc0", "container_name": "01. Denmark", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "121deaf433dfae27519f93797090b905252d4bc0", "originator_id": "121deaf433dfae27519f93797090b905252d4bc0", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "01. Denmark"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "container_name": "SCANDINAVIA", "container_type_id": "GLOBALMARKETUNIT", "container_type_name": "L6 - MARKET UNIT", "inherited_metadata_values": [{"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "24a6615bcce9adc5a098c76c29b8e8baba61a9a3"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E22"}, "display_value": "SCANDINAVIA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "13063087b81ea172db42e69ed8e8fa013cd5bfe0"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Local SCANDINAVIA Editable Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "bf49ba2a40d0d0dccee4d5de7381659b106dd89a"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Premium Chocolate Local SCANDINAVIA Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "8e4d311466783d8215a38b08bee3cb2b3bfcf40f"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "9e88b5726590ab30642999a28a301e3fbcebc762"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "name": "Published Security Policy - Restricted Visibility", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Security Policy - Restricted Visibility", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_VISIBILITY_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "3c0070e420882e3e18f6097811cb60a67239003b"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local SCANDINAVIA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "7f3c1933b61e900457ea6e2aab750303882873d4"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "b0c960759e48c0fcdcb650417179a614da95e866"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Local SCANDINAVIA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "6f603fcc63415e266dc35cf2314d31357a2966bf"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "3c12728b06ecfafeeb74482ea7b7296b180765f9"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "dc9b8ffa0591a1b2956c07fa5dc10ff477c84f4e"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "495fa4f08769a021cfa907dfb7a903fade9bd19a"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "e3b647e172a89e1e7cbdd2964faff1bca8dcf520"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "6870cca056b54cd400a9fbd4fe75513e69cedcdd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "RMMC", "values": [{"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "container_name": "01. MC - Rocher", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "bb01cf85444107f22341d2b88421f0cbaade0bf9"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E023"}, "display_value": "MULTI COUNTRY EUROPE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "8f497ce53d23899c7c09aa5a7ca69c9f55c3a62d"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E22"}, "display_value": "SCANDINAVIA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "ca70a6d55e4277ecbef2a01a593c614501cbcf74"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "3e9d669ab1047383d0416ba40af75744148c94c8"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "0e241fc386dcd91baa31a409e297169fe4a352c2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "2e3e0f2be0e487b540d9b63cb8c0e9ed9c6b1bb6"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "359c98154f230a60acc6b4eb048e129411d7a778"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "b3698893fc223e8371f4e4c0d560d0536c724a09"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "e92f9f10c0c29dda8261218c2c72a0baa66472f2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "15dff42c3b196ba3ae5b3c2ea33f00e347e6f654"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "0ae044cd9dddf86cd9406c9edc3996b18c430be0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "name": "AMMC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AMMC", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LOCAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "7806fed6127b50c21f6b03e1f7b63f3dedc1e8d1"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "RMMC", "values": [{"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "4c8a2d6e178638bfacfeaf3f7f6f1000304693a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "name": "Product Asset Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Asset Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCT_ASSET_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of local comm"}, "display_value": "Local adaptation of local comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of local comm"}, "display_value": "Local adaptation of local comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "5a1ae26558efdc03336c0df838dd9e7c2a51c687"}, "metadata_element": {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "name": "Market Unit", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market Unit", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETUNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "MARKET_UNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "container_name": "Read Only", "container_type_id": "L3 - Agency Structure", "container_type_name": "L3 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "55530f721f18c847e35d7c828edf53461b5014b0"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "330bb6f68316aab5c45f9fe34e047cce573c67cc"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "name": "Agency Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "AGENCY_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "e30e90d694f9935d4c15c4c78891beed8853a272"}, "metadata_element": {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "name": "Published Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "PUBLISHED_ASSET_SP_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "23b155c32d5c6142914b41458234c100812bbec8", "container_name": "Oliver", "container_type_id": "L2 - Agency Structure", "container_type_name": "L2 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.AGENCY", "tabular": false, "value_id": {"uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "originator_id": "23b155c32d5c6142914b41458234c100812bbec8", "inherited_field_id": "48fcbc397986aca5bb8722a95197dd0a46f19b4e"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_AGENCY", "column_name": "AGENCY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "container_name": "Z - Exchange", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "YY"}, "display_value": "AGENCIES", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Final Approver BPS ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}], "asset_lock_state_last_update_date": "2026-01-15T14:16:20.483+01:00", "content_lock_state_last_update_date": "2026-01-09T16:31:23.207+01:00"}, "language_code": null, "language_name": null, "subject_title": null, "file_extension": ".jpg", "asset_type_name": null, "file_size_bytes": null, "duration_seconds": null, "upload_directory": "90962e8228075df2ada17d7fb668aaca95c87092", "local_campaign_id": null, "original_filename": "kinder joy 2", "global_master_folder_id": null, "global_master_campaign_id": null} 2026-01-16 20:54:05.60229 \N 16 MuXBHt master_asset_created {"id": 16, "tags": null, "status": "active", "width_px": null, "height_px": null, "mime_type": "image/jpeg", "asset_type": null, "brand_code": null, "brand_name": null, "categories": null, "created_at": "2026-01-16T20:54:08.736826", "deleted_at": null, "is_deleted": false, "updated_at": "2026-01-16T20:54:08.736826", "description": "Box File ID: 2105225634392\\nBox URL: https://app.box.com/file/2105225634392\\nDAM Asset ID: 5012626b17281761b51535780cc82a1a84a4b649", "ingested_at": "2026-01-16T20:54:08.736826", "ingested_by": null, "opentext_id": "5012626b17281761b51535780cc82a1a84a4b649", "tracking_id": "MuXBHt", "aspect_ratio": null, "country_code": null, "country_name": null, "full_metadata": {"name": "kinder joy.jpg", "links": {"links": [], "source_id": "5012626b17281761b51535780cc82a1a84a4b649"}, "locked": false, "deleted": false, "expired": false, "version": 1, "asset_id": "5012626b17281761b51535780cc82a1a84a4b649", "metadata": {"id": "ECOMMERCE", "name": "Marketing Asset", "type": "com.artesia.metadata.MetadataModel", "legacy_id": 116, "metadata_element_list": [{"id": "FERRERO.CATEGORY.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200054, "metadata_element_list": [{"id": "FERRERO.FIELD.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Status", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.CONTENT_STATUS", "edit_type": "COMBO_NOTNULL", "facetable": false, "searchable": true, "table_name": "FERRERO_CONTENT_STATUS_MD", "column_name": "CONTENT_STATUS", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9215, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRER.CATEGORY.ASSET_INFO", "name": "Asset Info", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200022, "metadata_element_list": [{"id": "FERRERO.FIELD.MKTG.ASSET TYPE", "name": "Asset Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "brandbook"}, "display_value": "Brand Book", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.ASSETTYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.FISCAL YEAR", "name": "Release Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2028/2029"}, "display_value": "2028/2029", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Release Fiscal Year", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_DOMAIN_FISCAL_YEAR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "FISCAL__YEAR", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "name": "Main Languages", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1210, "metadata_element_list": [{"id": "MAIN_LANGUAGES", "name": "MAIN LANGUAGES", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "MAIN LANGUAGES", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MAIN LAGUAGES_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MAIN_LANGUAGE_TABLE", "column_name": "MAIN_LANGUAGE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "parent_table_name": "Main Languages", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.ASSET DESCRIPTION", "name": "Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Description", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "DESCR", "data_length": 249, "description": "Descriptive information", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.FLAVOUR", "name": "Flavour", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Flavour", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.FLAVOUR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FLAVOUR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.SIZE", "name": "Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Size", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.SIZE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SIZE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1241, "metadata_element_list": [{"id": "FERRERO.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Compliance", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ASSETCOMPLIANCE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_COMPLIANCE", "column_name": "ASSET_COMPLIANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "parent_table_name": "Asset Compliance", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.TAG DETAILS", "name": "Tag Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 118, "metadata_element_list": [{"id": "ARTESIA.FIELD.TAG", "name": "Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "cartoon", "field_value": {"type": "string", "value": "cartoon"}, "display_value": "cartoon", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Tag", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "cartoon", "field_value": {"type": "string", "value": "cartoon"}, "display_value": "cartoon", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "ball", "field_value": {"type": "string", "value": "ball"}, "display_value": "ball", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "baseball", "field_value": {"type": "string", "value": "baseball"}, "display_value": "baseball", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "sports uniform", "field_value": {"type": "string", "value": "sports uniform"}, "display_value": "sports uniform", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.TAGS", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "OTMM_TAGS", "column_name": "TAG", "data_length": 80, "description": "Tag", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG CONFIDENCE", "name": "Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 80.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Confidence", "values": [{"value": {"type": "decimal", "value": 80.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 80.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 76.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 56.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Confidence", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG TYPE", "name": "Tag Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Tag Type", "values": [{"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "TAG_TYPE", "data_length": 10, "description": "Tag Type", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED BY", "name": "Associated By", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Associated By", "values": [{"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_BY", "data_length": 10, "description": "Associated By", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED DATE", "name": "Associated Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-09T16:32:10.27+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Associated Date", "values": [{"value": {"type": "dateTime", "value": "2026-01-09T16:32:10.27+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2026-01-09T16:32:10.27+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2026-01-09T16:32:10.273+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2026-01-09T16:32:10.273+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_DATE", "data_length": 10, "description": "Associated Date", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.STATE", "name": "Global/Local", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "GLOBAL"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO_NOTNULL", "facetable": true, "searchable": true, "table_name": "FERRERO_IC_ASSET_DETAILS", "column_name": "ASSET_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.ASPECT RATIO", "name": "Aspect Ratio (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio (Marketing)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASPECT_RATIO", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASPECT_RATIO", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "name": "Tag (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1222, "metadata_element_list": [{"id": "MARKETING_TAG", "name": "Marketing Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Marketing Tag", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.DOMAIN.TAG", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TAG_MARKET", "column_name": "TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "parent_table_name": "Tag (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.TAGS", "name": "Auto-Generated Tags", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Auto-Generated Tags", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "AUTO_GENERATED_TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CERTIFIER", "name": "Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approver", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.MARKETING.FIELD.APPROVAL DATE", "name": "Approval__Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approval__Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.LEGAL APPROVAL DATE", "name": "Legal Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CERTIFIER", "name": "IA&CC Certifier", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Certifier", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CC APPROVAL DATE", "name": "IA&CC Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "name": "Extended Approval", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1230, "metadata_element_list": [{"id": "FERRERO.FIELD.EXTENDED.APPROVAL", "name": "Extended Approval required by:", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended Approval required by:", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COMMENTS", "name": "Comment", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comment", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "COMMENTS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.DATE", "name": "Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USERS", "name": "User ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "User ID", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "USERS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXTENDED.JOBID", "name": "Extended JobID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended JobID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.MIGRATION.INDEX", "name": "Migration Index", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Migration Index", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MIGRATION.INDEX", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MIGRATION_INDEX", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "FERRERO_MARKET_MARKETING_CREATOR", "name": "Marketing Creator", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Marketing Creator", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.CREATOR", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MARKETING_CREATOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "ARTESIA.FIELD.IS LATEST VERSION", "name": "Is Latest Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Y"}, "display_value": "Yes", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Is Latest Version", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.YES_NO", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "IS_LATEST_VERSION", "data_length": 1, "description": "Is this the latest version? (Y/N)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET VERSION", "name": "Asset Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 1}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Version", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "INTEGER", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "VERSION", "data_length": 12, "description": "Version number of asset", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET_ID", "name": "Asset ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "5012626b17281761b51535780cc82a1a84a4b649"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset ID", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "LOGICAL_UOI_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.ECOMMERCE STATUS", "name": "Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "PUBLISHED"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Status", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "ASSET_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CREATOR", "name": "Uploaded by", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Uploaded by", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_USER_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.FIELD.CREATION DATE", "name": "Upload Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-09T16:31:22.763+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Upload Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_DT", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.ASSET NAME", "name": "Asset Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "kinder joy.jpg"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Name", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "description": "Original name of master object", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.CONTENT TYPE", "name": "Content Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "BITMAP"}, "display_value": "Image", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Type", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.CONTENT_TYPES", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "CONTENT_TYPE", "data_length": 8, "description": "Content Type", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.MIME TYPE", "name": "File Extension", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "image/jpeg"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Extension", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_MIME_TYPE", "data_length": 80, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.FILE.SIZE", "name": "File Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "long", "value": 6776}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Size", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "LONG", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_SIZE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP RESOLUTION", "name": "Bitmap Resolution", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 72}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Resolution", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_RESOLUTION", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP WIDTH", "name": "Bitmap Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 225}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Width", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_WIDTH", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP HEIGHT", "name": "Bitmap Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 225}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Height", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_HEIGHT", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "name": "Approval Metadata", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1249, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.DEPARTMENT", "name": "Department", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Department", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "DEPARTMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.CERTIFIER", "name": "Certifier", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Certifier", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL DATE", "name": "Approval Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Approval Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "APPROVAL_DATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.COMMENT", "name": "Comments", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comments", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "COMMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.TYPE OF APPROVAL", "name": "Type of Approval", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Approval", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "TYPE_OF_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL STATUS", "name": "Approval Status", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Approval Status", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "APPROVAL_STATUS", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.SUB JOBID", "name": "Sub Job Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sub Job Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.VIDEO.BIT_RATE", "name": "Bitrate", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitrate", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "BIT_RATE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.EMBEDDED.FIELD.DURATION", "name": "Duration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Duration", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "DURATION_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.ASPECT RATIO", "name": "Aspect Ratio", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "ASPECT_RATIO", "data_length": 30, "displayable": false, "instructions": "ASPECT_RATIO", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME HEIGHT", "name": "Frame Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Height", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_HEIGHT", "data_length": 12, "displayable": true, "instructions": "FRAME_HEIGHT", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME WIDTH", "name": "Frame Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Width", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_WIDTH", "data_length": 12, "displayable": true, "instructions": "FRAME_WIDTH", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.ASPECT.RATIO.POC", "name": "Aspect Ratio(POC)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "1:1"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio(POC)", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASPECT_RATIO_TABLE", "column_name": "ASPECT_RATIO", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "PRODUCT.DETAILS", "name": "Product Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200029, "metadata_element_list": [{"id": "FERRERO.TABLE.EANCODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1208, "metadata_element_list": [{"id": "EAN_CODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "EAN CODE/ 77 CODE", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "EAN.CODE", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "EAN_CODE", "column_name": "EAN_CODE_DESCRIPTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "COUNTRY", "name": "COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "EAN_CODE", "column_name": "COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKETING.ADVANCE.PRODUCT.LINK", "name": "Asset-to-product relation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset-to-product relation", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_MARKETING_ADVANCE_PRODUCT_LINK", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ADVANCE_PRODUCT_LINK", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 10182, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.SUB BRAND", "name": "Sub-Brands", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Sub-Brands", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.SUBBRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "SUB_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT WEIGHT", "name": "Product Weight", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Weight", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_WEIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.CONSUMER UNIT PACKAGING", "name": "Consumer Unit Packaging", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Consumer Unit Packaging", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PACK", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "CONSUMER_UNIT_PACKAGING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.4 DIGIT CODE", "name": "4 Digit Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "4 Digit Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "DIGITCODE", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERREO.ECOM.RETAILER_SPECIFIC_FIELD", "name": "Retailer Specific", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Retailer Specific", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "RETAILER_SPECIFIC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "cascading_group_id": "FERRERO.RETAILER.SPECIFIC", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY START PERIOD", "name": "Asset validity start period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-11T00:00:00+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity start period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_STARTING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY END PERIOD", "name": "Asset validity end period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-03-31T00:00:00+02:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity end period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_ENDING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.ASSET.NAMING.CONVENTION", "name": "Does asset need GS1 naming convention", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Does asset need GS1 naming convention", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASSETNAMINGCONVENTION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_NAMING_CONVENTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9515, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT VIEW", "name": "Product View", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product View", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT VIEW", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_VIEW", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT ANGLE", "name": "Product Angle", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Angle", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT.ANGLE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_ANGLE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT STATE", "name": "Product State", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product State", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT STATE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PROMOTION ID", "name": "Promo ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Promo ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROMO_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.BUSINESS.ASSET TYPE", "name": "Asset Type (eDAM)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Type (eDAM)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "OTMM.DOMAIN.OTMM_ASSETTYPE_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_BUSINESS_INFO", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7244, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200048, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.AGENCY NAME", "name": "Agency Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency Name", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.AGENCY_NAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AGENCY_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7336, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.CREATIX", "name": "CreativeX", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200059, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.CREATIVEX", "name": "Confidence", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1245, "metadata_element_list": [{"id": "FERRERO.TAB.FIELD.CREATIVEX", "name": "Platform > Rating (%)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Platform > Rating (%)", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_CREATIVEX", "column_name": "CREATIVEX_NEW", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CREATIVEX", "parent_table_name": "Confidence", "cascading_group_id": "FERRERO.CREATIVEX.CHAR", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.CREATIVEX LINK", "name": "CreativeX Hyperlink", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "CreativeX Hyperlink", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_CREATIVEX", "column_name": "CREATIVE_LINK", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.IP_RIGHTS", "name": "IP Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200046, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.IPRIGHT", "name": "IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IP Rights", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.IPRIGHTS", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IP_RIGHTS", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.BUYOUT", "name": "Touchpoint Scope", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Touchpoint Scope", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.TOTAL_BUYOUT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TOTAL_BUYOUT", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.FERRERO PROPERTY", "name": "Ferrero Property", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Ferrero Property", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.FERRERO_PROPERTY", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FERRERO_PROPERTY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200035, "metadata_element_list": [{"id": "FERRERO.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1209, "metadata_element_list": [{"id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "name": "IP Coverage, Area, Region & Market Unit", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Coverage, Area, Region & Market Unit", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "IPCOVERAGE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "cascading_group_id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHT TYPE", "name": "Copyright Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHT_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.MEDIATYPE", "name": "Media Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Media Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MEDIA_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "MEDIA_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE FROM", "name": "Expiration of Usage - From", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - From", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_FROM", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE TO", "name": "Expiration of Usage - To", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - To", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_TO", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO._DURATION", "name": "IP Duration", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Duration", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "ECOM_DURATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHTTYPE DETAILS", "name": "Copyright Type Details", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type Details", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHTTYPE_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 6, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.MARKET.VID_STAT_RIGHT", "name": "Video & Static Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200047, "metadata_element_list": [{"id": "FERRERO.MARKET.VID_N_STAT", "name": "Video and Static Right", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video and Static Right", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VID_AND_STAT_RIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.VID_STAT_TYPE", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1221, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.TYPE_VID", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Video & Static Right", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TYPE_VID_STAT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_MARKET_TYPE_VID_STAT", "column_name": "TYPE_OF_VIDEO_STATIC_RIGHT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.VID_STAT_TYPE", "parent_table_name": "Type of Video & Static Right", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKET.PROD_COMPANY", "name": "Production House", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Production House", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.PRODUCT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200050, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.LICENSIN", "name": "Licensing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Licensing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSING", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "cascading_group_id": "FERRERO.MARKET.CG.LICENSE", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.SPOT_DETAILS", "name": "Spot Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200049, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.SPOT_VERSION", "name": "Spot Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Version", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_VERSION", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_VERSION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.SPOT_TYPE", "name": "Spot Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_TYPE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.DIRECTOR_NAME", "name": "Director Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Director Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "DIRECTOR_NAME", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VIDEO_POST_PROD_COMPANY", "name": "Video Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VID_POST_PROD_CONTACT", "name": "Video Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_COMPANY", "name": "Audio Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_CONTACT", "name": "Audio Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.BROADCASTER.CODE", "name": "Broadcaster Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Broadcaster Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BROADCASTER_CODE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.TECHNICAL_VALIDATION", "name": "Technical Validation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Technical Validation", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TECHNICAL_VALIDATION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS", "name": "Media Analysis", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1002, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "name": "Categories", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 105, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY NAME", "name": "Category Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "others_"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Category Name", "values": [{"value": {"type": "string", "value": "others_"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "text_sign"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "NAME", "data_length": 100, "description": "Category Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY CONFIDENCE", "name": "Category Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 5.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Category Confidence", "values": [{"value": {"type": "decimal", "value": 5.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 12.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "CONFIDENCE", "data_length": 10, "description": "Category Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES COUNT", "name": "Faces Count", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Faces Count", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACECOUNT", "column_name": "COUNT", "data_length": 10, "description": "Faces Count", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "name": "Face Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 106, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME", "name": "Recognized Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME", "data_length": 2000, "description": "Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME CONFIDENCE", "name": "Recognized Name Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME_CONFIDENCE", "data_length": 10, "description": "Name Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE", "name": "Person Age", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE", "data_length": 10, "description": "Person Age", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE CONFIDENCE", "name": "Person Age Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Person Age Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_CONFIDENCE", "data_length": 10, "description": "Person Age Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER", "name": "Gender", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Gender", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.GENDER", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER", "data_length": 40, "description": "Gender", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER CONFIDENCE", "name": "Gender Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Gender Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER_CONFIDENCE", "data_length": 10, "description": "Gender Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.FACE COORDS", "name": "Face Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "FACE_COORDS", "data_length": 200, "description": "Face Coordinates like postion, height,width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE GROUP", "name": "Person Age Group", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age Group", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.AGE GROUP", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_GROUP", "data_length": 10, "description": "Person Age Group", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "name": "Safe Content", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 107, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONTENT TYPE", "name": "Safe Content Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Safe Content Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENTS", "data_length": 20, "description": "Safe Content Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONFIDENCE", "name": "Content Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Content Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENT_CONFIDENCE", "data_length": 10, "description": "Safe Content Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "name": "Colors", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 108, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.NAME", "name": "Color", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "White"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Color", "values": [{"value": {"type": "string", "value": "White"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "NAME", "data_length": 25, "description": "COLOR", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.PROPORTION", "name": "Color Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Color Confidence", "values": [{"is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "PROPORTION", "data_length": 10, "description": "Proportion", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.FOREGROUND", "name": "Foreground Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "White"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Foreground Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "FOREGROUND", "data_length": 25, "description": "Foreground Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.BACKGROUND", "name": "Background Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "White"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Background Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "BACKGROUND", "data_length": 25, "description": "Background Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.ISBW", "name": "Is Black and White", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "false"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Is Black and White", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "ISBW", "data_length": 10, "description": "Is Black and White", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "name": "Captions", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 109, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION TEXT", "name": "Caption Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "logo"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Caption Text", "values": [{"value": {"type": "string", "value": "logo"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "TEXT", "data_length": 2000, "description": "Caption Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION CONFIDENCE", "name": "Caption Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 38.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Caption Confidence", "values": [{"value": {"type": "decimal", "value": 38.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "CAPTION_CONFIDENCE", "data_length": 10, "description": "Caption Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "name": "Image Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 110, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.IMAGE TYPE", "name": "Analysis Image Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "clip_art"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Analysis Image Type", "values": [{"value": {"type": "string", "value": "clip_art"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_IMAGE_TYPE", "column_name": "TYPE", "data_length": 100, "description": "Image Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "parent_table_name": "Image Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.DATE", "name": "Date: Media Analysis", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-09T16:32:10+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date: Media Analysis", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MEDIA_ANALYSIS_DATE", "data_length": 25, "description": "Date Media Analysis was done on the asset.", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR LANGUAGE", "name": "Image Text Language", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "unk"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Image Text Language", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "LANGUAGE", "data_length": 10, "description": "OCR data language", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR TEXT", "name": "Text on Image", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Text on Image", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "TEXT", "data_length": 4000, "description": "OCR Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "name": "Embedded Brand Info", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 119, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.NAME", "name": "Embedded Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Kinder Chocolate"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Embedded Brand Name", "values": [{"value": {"type": "string", "value": "Kinder Chocolate"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Embedded Brand Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.CONFIDENCE", "name": "Embedded Brand Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 84.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Embedded Brand Confidence", "values": [{"value": {"type": "decimal", "value": 84.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Embedded Brand Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.COORDINATES", "name": "Embedded Brand Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "\\"top\\":0.35555555555555557,\\"left\\":0.39555555555555555,\\"width\\":0.22666666666666666,\\"height\\":0.07111111111111111"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Embedded Brand Coordinates", "values": [{"value": {"type": "string", "value": "\\"top\\":0.35555555555555557,\\"left\\":0.39555555555555555,\\"width\\":0.22666666666666666,\\"height\\":0.07111111111111111"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "COORDINATES", "data_length": 200, "description": "Embedded Brand Coordinates like position, height, width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "HYBRIS.PRODUCT.INFO", "name": "PIM Item Reference", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200027, "metadata_element_list": [{"id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "name": "Hybris Item Reference", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1206, "metadata_element_list": [{"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ID", "name": "Hybris Item ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ID", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT TAG NAME", "name": "Hybris Assignment Label", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Assignment Label", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_TAG_NAME", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ATTRIBUTE NAME", "name": "Hybris Attribute Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Attribute Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ATTRIBUTE_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT CATALOG NAME", "name": "Hybris Catalog Mnemonic", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Catalog Mnemonic", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_CATALOG_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT PK", "name": "Hybris Item PK", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item PK", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_PK", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.SYSTEM ID", "name": "Hybris System ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris System ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "SYSTEM_ID", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.ASSIGNED", "name": "Assigned", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Assigned", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "ASSIGNED", "column_name": "ASSIGNED", "data_length": 38, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PIM TYPE", "name": "PIM Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "PIM Type", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_PIM_TYPE", "column_name": "PIM_TYPE", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS VIDEO", "name": "Media Analysis Video", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1003, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "name": "Labels", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 113, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.ID", "name": "Label Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "ID", "data_length": 40, "description": "Label Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.NAME", "name": "Label Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "NAME", "data_length": 40, "description": "Label Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.APPEARANCES", "name": "Label Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "APPEARANCES", "data_length": 0, "description": "Label Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "name": "Sentiments", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 114, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.ID", "name": "Sentiment Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "ID", "data_length": 40, "description": "Sentiment Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.NAME", "name": "Sentiment Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "NAME", "data_length": 40, "description": "Sentiment Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.APPEARANCES", "name": "Sentiment Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "APPEARANCES", "data_length": 0, "description": "Sentiment Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.SEEN.DURATION.RATIO", "name": "Sentiment Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Sentiment Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "name": "Keywords", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 115, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.ID", "name": "Keyword Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "ID", "data_length": 40, "description": "Keyword Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.NAME", "name": "Keyword Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "NAME", "data_length": 40, "description": "Keyword Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.APPEARANCES", "name": "Keyword Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Keyword Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "name": "Faces", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 111, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.ID", "name": "Face Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "ID", "data_length": 40, "description": "Face Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.NAME", "name": "Face Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "NAME", "data_length": 40, "description": "Face Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.TITLE", "name": "Face Title", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Title", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "TITLE", "data_length": 249, "description": "Face Title", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.DESCRIPTION", "name": "Face Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Face Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.APPEARANCES", "name": "Face Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "APPEARANCES", "data_length": 0, "description": "Face Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SPEAKER.FACE.ID", "name": "Video Speaker Object Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Speaker Object Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "THUMBNAIL_OBJECT_ID", "data_length": 40, "description": "Video Speaker Object Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.SEEN.DURATION.RATIO", "name": "Face Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "SEEN_DURATION_RATIO", "data_length": 20, "description": "Face Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "name": "Brands", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 112, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.ID", "name": "Video Brand Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "ID", "data_length": 40, "description": "Brand Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.NAME", "name": "Video Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Brand Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.DESCRIPTION", "name": "Video Brand Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Brand Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.WIKIURL", "name": "Video Brand Wiki URL", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Wiki URL", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "WIKIURL", "data_length": 200, "description": "Brand Wiki URL", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.APPEARANCES", "name": "Video Brand Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Brand Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.SEEN.DURATION.RATIO", "name": "Video Brand Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Brand Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "name": "Speeches", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 116, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.ID", "name": "SpeechText Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "SpeechText Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "ID", "data_length": 40, "description": "SpeechText Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXT", "name": "Speech Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Text", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXT", "data_length": 1000, "description": "Speech Text", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXTTYPE", "name": "Speech Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXTTYPE", "data_length": 40, "description": "Speech Type", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.START TIME", "name": "Speech Start Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Start Time", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "START_TIME", "data_length": 40, "description": "Speech Start Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.END TIME", "name": "Speech End Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech End Time", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "END_TIME", "data_length": 40, "description": "Speech End Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "name": "Speakers", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 122, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.ID", "name": "Speaker Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "ID", "data_length": 40, "description": "Speaker Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.NAME", "name": "Speaker Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "NAME", "data_length": 100, "description": "Speaker Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.APPEARANCES", "name": "Speaker Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "APPEARANCES", "data_length": 0, "description": "Speaker Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.FIELDGROUP.LOCALASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200057, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1239, "metadata_element_list": [{"id": "FERRERO.FIELD.COUNTRY", "name": "LOCAL COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "LOCAL COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USER", "name": "USER", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "USER", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_USER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.ASSOCIATION", "name": "TYPE OF ASSOCIATION", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "TYPE OF ASSOCIATION", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_ASSOCIATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.VALUE", "name": "VALUE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "VALUE", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_VALUE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "CG.CATEGORY.FADEL ASSET INFORMATION", "name": "Rights Asset Information", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200064, "metadata_element_list": [{"id": "CG.FIELD.RIGHTS MANAGED", "name": "Fadel IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fadel IP Rights", "enabled": true, "options": "", "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_RIGHTS_MANAGED_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGED", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.NEEDS RIGHTS MANAGEMENT", "name": "Needs Rights Management", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "10", "field_value": {"type": "string", "value": "N"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Needs Rights Management", "enabled": true, "options": "", "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_NEEDS_RIGHTS_MANAGEMENT_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "NEEDS_RIGHTS_MANAGEMENT", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.RIGHTS MANAGEMENT DESCRIPTION", "name": "Rights Management Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Rights Management Description", "enabled": true, "options": "", "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGEMENT_DESCRIPTION", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.RIGHTS MANAGEMENT STATUS", "name": "Rights Management Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Rights Management Status", "enabled": true, "options": "", "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_RIGHTS_MANAGEMENT_STATUS_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGEMENT_STATUS", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.FORCE SYNC", "name": "Force Sync", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Force Sync", "enabled": true, "options": "", "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_FORCE_SYNC_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "FORCE_SYNC", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.LAST SYNC TIME", "name": "Date of last data sync", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date of last data sync", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "LAST_SYNC_TIME", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "CG.CATEGORY.FADEL RIGHTS INFORMATION", "name": "Rights Information", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200065, "metadata_element_list": [{"id": "CG.TABLE.RIGHTS", "name": "Rights", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1256, "metadata_element_list": [{"id": "CG.FIELD.RIGHT TERRITORIES", "name": "Territory", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Territory", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "TERRITORY", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT USES", "name": "Use", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Use", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "USAGE", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT IN DATE", "name": "In Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "In Date", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "IN_DATE", "data_length": 10, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT OUT DATE", "name": "Out Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Out Date", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "OUT_DATE", "data_length": 10, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "saved_values_behavior_mode": 0}]}]}, {"id": "CG.CATEGORY.FADEL AGREEMENTS AND PARTIES", "name": "Agreements and Parties", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200067, "metadata_element_list": [{"id": "CG.TABLE.PARTIES.AGREEMENTS VW", "name": "Customized Table Parties and Agreements", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1258, "metadata_element_list": [{"id": "CG.FIELD.AGREEMENT NUMBER VW", "name": "Agreement Number ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Number ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_NUMBER", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT DESCRIPTION VW", "name": "Agreement Description ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Description ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_DESCRIPTION", "data_length": 2000, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT START DATE VW", "name": "Agreement Start Date ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Start Date ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_START_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT END DATE VW", "name": "Agreement End Date ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement End Date ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_END_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY NAME VW", "name": "Party Name ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Name ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_NAME", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY ROLE VW", "name": "Party Role ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Role ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_ROLE", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY EMAIL ADDRESS VW", "name": "Party Email Address ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Email Address ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_EMAIL_ADDRESS", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY PHONE NUMBER VW", "name": "Party Phone Number ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Phone Number ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_PHONE_NUMBER", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PRIMARY PARTY CONTACT VW", "name": "Primary Party Contact ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Primary Party Contact ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PRIMARY_PARTY_CONTACT", "data_length": 200, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 8, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}], "has_multilingual_fields": false}, "mime_type": "image/jpeg", "path_list": [{"parents": [{"id": "90962e8228075df2ada17d7fb668aaca95c87092", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "90962e8228075df2ada17d7fb668aaca95c87092", "sequence_number": 0}, {"id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "name": "MASTER FOR FER ROCH", "container_state": "NORMAL", "original_uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "sequence_number": 0}, {"id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "name": "01. DE - Rocher ", "container_state": "NORMAL", "original_uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "sequence_number": 0}, {"id": "091216b59cad7f1ea815164c26db27e350c54023", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "sequence_number": 0}, {"id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "name": "01. Rocher", "container_state": "NORMAL", "original_uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "sequence_number": 0}, {"id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "name": "01. Ferrero Rocher", "container_state": "NORMAL", "original_uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "sequence_number": 0}, {"id": "93b0968611de11160ed068afeb9930b9965bd5ff", "name": "03. Premium Chocolate", "container_state": "NORMAL", "original_uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "sequence_number": 0}], "complete": true, "sequence_number": 2, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "90962e8228075df2ada17d7fb668aaca95c87092", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "90962e8228075df2ada17d7fb668aaca95c87092", "sequence_number": 0}, {"id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "name": "MASTER FOR FER ROCH", "container_state": "NORMAL", "original_uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "sequence_number": 0}, {"id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "name": "01. DE - Rocher ", "container_state": "NORMAL", "original_uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "sequence_number": 0}, {"id": "bfbc248a12a4bf0382406620f0d9ec41ff42e35e", "name": "01. Ferrero Rocher", "container_state": "NORMAL", "original_uoi_id": "bfbc248a12a4bf0382406620f0d9ec41ff42e35e", "sequence_number": 0}, {"id": "3d7debea6815ae46c9598191b1c645007666292a", "name": "03 . Premium Chocolate", "container_state": "NORMAL", "original_uoi_id": "3d7debea6815ae46c9598191b1c645007666292a", "sequence_number": 0}, {"id": "c0bb10be2b8f96ee4d27a2dfb7e0d03de68cf114", "name": "DE", "container_state": "NORMAL", "original_uoi_id": "c0bb10be2b8f96ee4d27a2dfb7e0d03de68cf114", "sequence_number": 0}, {"id": "b124e1ed196028bdd0e2c093e28078ca8d9ad462", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "b124e1ed196028bdd0e2c093e28078ca8d9ad462", "sequence_number": 0}, {"id": "68ce80e8c8a30badb82dabfd823886a6fa6fe309", "name": "Y - Geography", "container_state": "NORMAL", "original_uoi_id": "68ce80e8c8a30badb82dabfd823886a6fa6fe309", "sequence_number": 0}], "complete": true, "sequence_number": 2, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}], "creator_id": "1003", "asset_state": "NORMAL", "checked_out": false, "folder_path": "", "content_size": 6776, "content_type": "BITMAP", "content_state": "NORMAL", "date_imported": "2026-01-09T16:31:22.763+01:00", "import_job_id": 224850, "subscribed_to": false, "collection_ids": [], "latest_version": true, "legacy_model_id": 116, "content_editable": true, "import_user_name": "bizAdmin", "date_last_updated": "2026-01-09T16:34:31.08+01:00", "metadata_model_id": "ECOMMERCE", "original_asset_id": "5012626b17281761b51535780cc82a1a84a4b649", "rendition_content": {"preview_content": {"id": "483a6862ad45101fcb3200cdfda510b3b8f23b55", "url": "/otmmapi/v6/renditions/483a6862ad45101fcb3200cdfda510b3b8f23b55", "name": "kinder joy-S.png", "width": 225, "height": 225, "mime_type": "image/png", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "PREVIEW", "content_path": "data\\\\repository\\\\screen\\\\vol0\\\\186\\\\kinder joy-S_483a6862ad45101fcb3200cdfda510b3b8f23b55.png", "content_size": 29679, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "thumbnail_content": {"id": "fd0e0b9bc84f01f521a79267e6c752d47be9cb4a", "url": "/otmmapi/v6/renditions/fd0e0b9bc84f01f521a79267e6c752d47be9cb4a", "name": "kinder joy-T.png", "width": 225, "height": 225, "mime_type": "image/png", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "THUMBNAIL", "content_path": "data\\\\repository\\\\thumb\\\\vol0\\\\201\\\\kinder joy-T_fd0e0b9bc84f01f521a79267e6c752d47be9cb4a.png", "content_size": 29679, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_content_info": {"master_content": {"id": "14287549e8fcc004cac9474bcd07347f5f79da32", "url": "/otmmapi/v6/renditions/14287549e8fcc004cac9474bcd07347f5f79da32", "name": "kinder joy.jpg", "width": 225, "height": 225, "mime_type": "image/jpeg", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\227\\\\kinder joy_14287549e8fcc004cac9474bcd07347f5f79da32.jpg", "content_size": 6776, "unit_of_size": "BYTES", "content_checksum": "284273ca5f2b6196e9d65fd8443738e2", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_state_user_id": "1003", "master_content_info": {"id": "14287549e8fcc004cac9474bcd07347f5f79da32", "url": "/otmmapi/v6/renditions/14287549e8fcc004cac9474bcd07347f5f79da32", "name": "kinder joy.jpg", "width": 225, "height": 225, "mime_type": "image/jpeg", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\227\\\\kinder joy_14287549e8fcc004cac9474bcd07347f5f79da32.jpg", "content_size": 6776, "unit_of_size": "BYTES", "content_checksum": "284273ca5f2b6196e9d65fd8443738e2", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "delivery_service_url": "https://ppr.dam.ferrero.com/adaptivemedia/rendition?id=5012626b17281761b51535780cc82a1a84a4b649", "product_associations": false, "security_policy_list": [{"id": 5467, "name": "Marketing Viewer", "status": "NORMAL", "created_by": "1003", "create_date": "2023-10-06T16:52:07.297+02:00", "description": "Marketing Viewer", "ownership_type": "PUBLIC"}], "thumbnail_content_id": "fd0e0b9bc84f01f521a79267e6c752d47be9cb4a", "content_state_user_id": "1003", "content_state_user_name": "OTMM BusinessAdmin", "asset_lock_state_user_id": "1003", "metadata_state_user_name": "OTMM BusinessAdmin", "access_control_descriptor": {"permissions_map": {"entry": [{"key": "text.securityPolicy.permission.Custom04Permission", "value": true}, {"key": "text.securityPolicy.permission.ContentEditPermission", "value": true}, {"key": "text.securityPolicy.permission.AssetViewPermission", "value": true}, {"key": "text.securityPolicy.permission.ProjectViewPermission", "value": true}, {"key": "text.securityPolicy.permission.MembershipEditPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom03Permission", "value": true}, {"key": "text.securityPolicy.permission.MetaDataEditPermission", "value": true}, {"key": "text.securityPolicy.permission.EditParentsPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom02Permission", "value": true}, {"key": "text.securityPolicy.permission.ExportPermission", "value": true}, {"key": "text.securityPolicy.permission.SummaryViewPermission", "value": true}, {"key": "text.securityPolicy.permission.PreviewViewPermission", "value": true}, {"key": "text.securityPolicy.permission.SubscribePermission", "value": true}, {"key": "text.securityPolicy.permission.DeleteAssetPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom01Permission", "value": true}]}}, "content_lock_state_user_id": "1003", "asset_state_last_update_date": "2026-01-09T16:34:31.08+01:00", "content_lock_state_user_name": "bizAdmin", "metadata_lock_state_user_name": "bizAdmin", "content_state_last_update_date": "2026-01-09T16:31:23.123+01:00", "inherited_metadata_collections": [{"container_id": "90962e8228075df2ada17d7fb668aaca95c87092", "container_name": "05. Final Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "90962e8228075df2ada17d7fb668aaca95c87092", "originator_id": "90962e8228075df2ada17d7fb668aaca95c87092", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "05. Final Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "container_name": "MASTER FOR FER ROCH", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "MASTER FOR FER ROCH"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000779"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "MASTER_FOR_FER_ROCH_CQ_LG_DE_PRE_0000779"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local comm on global brands"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Master Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Master Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2026/2027"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "B1"}, "display_value": "Master campaign ready for re-mastering", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ADDITIONALAPPROVER", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.LICENSING", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "d0ef653291e269a7d1ddf0ebfedd1c6ad70b1c59"}, "metadata_element": {"id": "FERRERO.FIELD.LICENSING", "name": "Campaign License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "LICENSING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}}]}, {"container_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "container_name": "01. DE - Rocher ", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "bb01cf85444107f22341d2b88421f0cbaade0bf9"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E006"}, "display_value": "GERMANY", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Local DE Editable Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Premium Chocolate Local DE Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "8f497ce53d23899c7c09aa5a7ca69c9f55c3a62d"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E64"}, "display_value": "GERMANY", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "ca70a6d55e4277ecbef2a01a593c614501cbcf74"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "3e9d669ab1047383d0416ba40af75744148c94c8"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0e241fc386dcd91baa31a409e297169fe4a352c2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "2e3e0f2be0e487b540d9b63cb8c0e9ed9c6b1bb6"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "359c98154f230a60acc6b4eb048e129411d7a778"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "b3698893fc223e8371f4e4c0d560d0536c724a09"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "e92f9f10c0c29dda8261218c2c72a0baa66472f2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "15dff42c3b196ba3ae5b3c2ea33f00e347e6f654"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Extended Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0ae044cd9dddf86cd9406c9edc3996b18c430be0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "name": "AMMC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AMMC", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LOCAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "7806fed6127b50c21f6b03e1f7b63f3dedc1e8d1"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "RMMC", "values": [{"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "4c8a2d6e178638bfacfeaf3f7f6f1000304693a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "name": "Product Asset Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Product Asset Approval Ferrero Rocher Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Asset Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCT_ASSET_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local comm on global brands"}, "display_value": "Local comm on global brands", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "5a1ae26558efdc03336c0df838dd9e7c2a51c687"}, "metadata_element": {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "name": "Market Unit", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market Unit", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETUNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "MARKET_UNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "091216b59cad7f1ea815164c26db27e350c54023", "container_name": "EU", "container_type_id": "GEOGRAPHYLOCAL", "container_type_name": "L4 - GEOGRAPHY LOCAL", "inherited_metadata_values": [{"id": "FERRERO.MARKET.FOLDER.GLOBAL", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "4c4d4bf36bf8b1ace55f990e78d6332a9cb20990"}, "metadata_element": {"id": "FERRERO.MARKET.FOLDER.GLOBAL", "name": "Global/Local (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "LOCAL"}, "display_value": "Local", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local (Marketing)", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "GLOBALLOCAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_AREA", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "3dc200c993ab8263952dc6da1498026f615f45dd"}, "metadata_element": {"id": "MARKETING_AREA", "name": "AREA", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E010"}, "display_value": "EUROPE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "AREA", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "AREA", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "AREA", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "dc7749c3e113ec9e0b9e9a3840ea55673ca5e49f"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "f2d658a3829c2ea158ae70a4b4e7928bcf88f8e2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "972d0258a82de85672bd84d8af68cdb67ad3d3ca"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "1212505ad3fe4c9d7458568f3d95aeb4c4e5c37e"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "9d1dfdef55ff7a3eb03552988ddf729c7a0f5107"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "54f006eeb366121a29ee98da33d437615dcd34e0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "1fd8802010e30d44cebb2f3eb090b12ac550f97d"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "8b6e1d8f7dc3c4671cfc11a2914d838ca3ee3f3b"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "be0dc9a87262ee7fd165237b531ba3b7aa93a260"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "2f99f0f0f9e43fb34df9222c8b73a86fb78e473e"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "container_name": "01. Rocher", "container_type_id": "GLOBALBRAND", "container_type_name": "L3 - BRAND", "inherited_metadata_values": [{"id": "FERRERO.TABULAR.NEW.BRAND", "tabular": true, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "9bb1c183135f5240f09132aef59c4ea48c762381"}, "metadata_element": {"id": "FERRERO.TABULAR.NEW.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF04"}, "display_value": "ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND (Marketing)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF04"}, "display_value": "ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "BRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TABULAR_BRAND", "column_name": "BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.NEW.BRAND", "parent_table_name": "BRAND (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "tabular": true, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "a37b13c02cba799378211e17b73234a0d836f9b6"}, "metadata_element": {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "CQ"}, "display_value": "FERRERO ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND(HARMONIZED)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "CQ"}, "display_value": "FERRERO ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.HARMONIZEDBRAND", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_HARMONIZEDBRAND", "column_name": "HARMONIZEDBRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.HARMONIZEDBRAND", "parent_table_name": "BRAND(HARMONIZED)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "AGENCY.COLLABORATION", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "183d6e0957a9940f9b18ef44f46d957802b63397"}, "metadata_element": {"id": "AGENCY.COLLABORATION", "name": "Agency collaboration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency collaboration", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "AGENCY_COLLABORATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "AGENCY.SHARING", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "d0e2b725ddfdc452cc3ba750bbe8ec059c6b01ba"}, "metadata_element": {"id": "AGENCY.SHARING", "name": "Agency sharing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency sharing", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "AGENCY_SHARING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "CONTENT.SCALING.AGENCYNAME", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "f9dfa695cc5ef8cd3fafada4e44cfdaa1522d58a"}, "metadata_element": {"id": "CONTENT.SCALING.AGENCYNAME", "name": "Content Scaling agency name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Scaling agency name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENTSCALING_AGENCYNAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "container_name": "01. Ferrero Rocher", "container_type_id": "GLOBALSUBCATEGORY", "container_type_name": "L2 - SUBCATEGORY", "inherited_metadata_values": [{"id": "MARKETING_SUBCATEGORY", "tabular": false, "value_id": {"uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "originator_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "inherited_field_id": "3000ad591e09b5c75f85fc2ccbb9ebeb31b3ab78"}, "metadata_element": {"id": "MARKETING_SUBCATEGORY", "name": "SUBCATEGORY", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Mart-Ferrero-Rocher"}, "display_value": "Ferrero Rocher", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "SUBCATEGORY", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "SUBCATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "SUBCATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "tabular": true, "value_id": {"uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "originator_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "inherited_field_id": "2c751ce760d88c0e271925ea5149348106944bfa"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Subcategory Owner", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_SUBCATEGORY_OWNER_TM", "column_name": "SUBCATEGORY_OWNER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "parent_table_name": "Subcategory Owner", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "container_name": "03. Premium Chocolate", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "originator_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E06"}, "display_value": "PREMIUM CHOCOLATE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "originator_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final Approver BPS ", "values": [{"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}], "asset_lock_state_last_update_date": "2026-01-09T16:34:31.167+01:00", "content_lock_state_last_update_date": "2026-01-09T16:31:23.207+01:00"}, "language_code": null, "language_name": null, "subject_title": null, "file_extension": ".jpg", "asset_type_name": null, "file_size_bytes": null, "duration_seconds": null, "upload_directory": "90962e8228075df2ada17d7fb668aaca95c87092", "local_campaign_id": null, "original_filename": "kinder joy", "global_master_folder_id": null, "global_master_campaign_id": null} 2026-01-16 20:54:08.736826 \N 17 Mx1uKv master_asset_created {"id": 17, "tags": null, "status": "active", "width_px": null, "height_px": null, "mime_type": "video/mp4", "asset_type": null, "brand_code": null, "brand_name": null, "categories": null, "created_at": "2026-01-16T20:54:16.852162", "deleted_at": null, "is_deleted": false, "updated_at": "2026-01-16T20:54:16.852162", "description": "Box File ID: 2105222423023\\nBox URL: https://app.box.com/file/2105222423023\\nDAM Asset ID: ccc426749470e3d170bb5101f9f3e049fe26a8ef", "ingested_at": "2026-01-16T20:54:16.852162", "ingested_by": null, "opentext_id": "ccc426749470e3d170bb5101f9f3e049fe26a8ef", "tracking_id": "Mx1uKv", "aspect_ratio": null, "country_code": null, "country_name": null, "full_metadata": {"name": "kinder-joy_video.mp4", "links": {"links": [], "source_id": "ccc426749470e3d170bb5101f9f3e049fe26a8ef"}, "locked": false, "deleted": false, "expired": false, "version": 1, "asset_id": "ccc426749470e3d170bb5101f9f3e049fe26a8ef", "metadata": {"id": "ECOMMERCE", "name": "Marketing Asset", "type": "com.artesia.metadata.MetadataModel", "legacy_id": 116, "metadata_element_list": [{"id": "FERRERO.CATEGORY.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200054, "metadata_element_list": [{"id": "FERRERO.FIELD.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Status", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.CONTENT_STATUS", "edit_type": "COMBO_NOTNULL", "facetable": false, "searchable": true, "table_name": "FERRERO_CONTENT_STATUS_MD", "column_name": "CONTENT_STATUS", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9215, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRER.CATEGORY.ASSET_INFO", "name": "Asset Info", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200022, "metadata_element_list": [{"id": "FERRERO.FIELD.MKTG.ASSET TYPE", "name": "Asset Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "brandbook"}, "display_value": "Brand Book", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.ASSETTYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.FISCAL YEAR", "name": "Release Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2028/2029"}, "display_value": "2028/2029", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Release Fiscal Year", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_DOMAIN_FISCAL_YEAR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "FISCAL__YEAR", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "name": "Main Languages", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1210, "metadata_element_list": [{"id": "MAIN_LANGUAGES", "name": "MAIN LANGUAGES", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "MAIN LANGUAGES", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MAIN LAGUAGES_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MAIN_LANGUAGE_TABLE", "column_name": "MAIN_LANGUAGE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "parent_table_name": "Main Languages", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.ASSET DESCRIPTION", "name": "Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Description", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "DESCR", "data_length": 249, "description": "Descriptive information", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.FLAVOUR", "name": "Flavour", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Flavour", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.FLAVOUR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FLAVOUR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.SIZE", "name": "Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Size", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.SIZE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SIZE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1241, "metadata_element_list": [{"id": "FERRERO.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Compliance", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ASSETCOMPLIANCE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_COMPLIANCE", "column_name": "ASSET_COMPLIANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "parent_table_name": "Asset Compliance", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.TAG DETAILS", "name": "Tag Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 118, "metadata_element_list": [{"id": "ARTESIA.FIELD.TAG", "name": "Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "kinder", "field_value": {"type": "string", "value": "kinder"}, "display_value": "kinder", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Tag", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "kinder", "field_value": {"type": "string", "value": "kinder"}, "display_value": "kinder", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.TAGS", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "OTMM_TAGS", "column_name": "TAG", "data_length": 80, "description": "Tag", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG CONFIDENCE", "name": "Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Confidence", "values": [{"is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Confidence", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG TYPE", "name": "Tag Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Tag Type", "values": [{"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "TAG_TYPE", "data_length": 10, "description": "Tag Type", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED BY", "name": "Associated By", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Associated By", "values": [{"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_BY", "data_length": 10, "description": "Associated By", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED DATE", "name": "Associated Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-09T16:33:12.92+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Associated Date", "values": [{"value": {"type": "dateTime", "value": "2026-01-09T16:33:12.92+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_DATE", "data_length": 10, "description": "Associated Date", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.STATE", "name": "Global/Local", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "GLOBAL"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO_NOTNULL", "facetable": true, "searchable": true, "table_name": "FERRERO_IC_ASSET_DETAILS", "column_name": "ASSET_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.ASPECT RATIO", "name": "Aspect Ratio (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio (Marketing)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASPECT_RATIO", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASPECT_RATIO", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "name": "Tag (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1222, "metadata_element_list": [{"id": "MARKETING_TAG", "name": "Marketing Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Marketing Tag", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.DOMAIN.TAG", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TAG_MARKET", "column_name": "TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "parent_table_name": "Tag (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.TAGS", "name": "Auto-Generated Tags", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Auto-Generated Tags", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "AUTO_GENERATED_TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CERTIFIER", "name": "Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approver", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.MARKETING.FIELD.APPROVAL DATE", "name": "Approval__Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approval__Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.LEGAL APPROVAL DATE", "name": "Legal Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CERTIFIER", "name": "IA&CC Certifier", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Certifier", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CC APPROVAL DATE", "name": "IA&CC Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "name": "Extended Approval", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1230, "metadata_element_list": [{"id": "FERRERO.FIELD.EXTENDED.APPROVAL", "name": "Extended Approval required by:", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended Approval required by:", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COMMENTS", "name": "Comment", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comment", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "COMMENTS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.DATE", "name": "Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USERS", "name": "User ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "User ID", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "USERS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXTENDED.JOBID", "name": "Extended JobID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended JobID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.MIGRATION.INDEX", "name": "Migration Index", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Migration Index", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MIGRATION.INDEX", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MIGRATION_INDEX", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "FERRERO_MARKET_MARKETING_CREATOR", "name": "Marketing Creator", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Marketing Creator", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.CREATOR", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MARKETING_CREATOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "ARTESIA.FIELD.IS LATEST VERSION", "name": "Is Latest Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Y"}, "display_value": "Yes", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Is Latest Version", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.YES_NO", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "IS_LATEST_VERSION", "data_length": 1, "description": "Is this the latest version? (Y/N)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET VERSION", "name": "Asset Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 1}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Version", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "INTEGER", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "VERSION", "data_length": 12, "description": "Version number of asset", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET_ID", "name": "Asset ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ccc426749470e3d170bb5101f9f3e049fe26a8ef"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset ID", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "LOGICAL_UOI_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.ECOMMERCE STATUS", "name": "Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "PUBLISHED"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Status", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "ASSET_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CREATOR", "name": "Uploaded by", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Uploaded by", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_USER_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.FIELD.CREATION DATE", "name": "Upload Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-09T16:31:22.76+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Upload Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_DT", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.ASSET NAME", "name": "Asset Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "kinder-joy_video.mp4"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Name", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "description": "Original name of master object", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.CONTENT TYPE", "name": "Content Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "VIDEO"}, "display_value": "Video", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Type", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.CONTENT_TYPES", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "CONTENT_TYPE", "data_length": 8, "description": "Content Type", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.MIME TYPE", "name": "File Extension", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "video/mp4"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Extension", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_MIME_TYPE", "data_length": 80, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.FILE.SIZE", "name": "File Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "long", "value": 2508962}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Size", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "LONG", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_SIZE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP RESOLUTION", "name": "Bitmap Resolution", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Resolution", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_RESOLUTION", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP WIDTH", "name": "Bitmap Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Width", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_WIDTH", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP HEIGHT", "name": "Bitmap Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Height", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_HEIGHT", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "name": "Approval Metadata", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1249, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.DEPARTMENT", "name": "Department", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Department", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "DEPARTMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.CERTIFIER", "name": "Certifier", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Certifier", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL DATE", "name": "Approval Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Approval Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "APPROVAL_DATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.COMMENT", "name": "Comments", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comments", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "COMMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.TYPE OF APPROVAL", "name": "Type of Approval", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Approval", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "TYPE_OF_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL STATUS", "name": "Approval Status", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Approval Status", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "APPROVAL_STATUS", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.SUB JOBID", "name": "Sub Job Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sub Job Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.VIDEO.BIT_RATE", "name": "Bitrate", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 2382114.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitrate", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "BIT_RATE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.EMBEDDED.FIELD.DURATION", "name": "Duration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00:00:08:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Duration", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "DURATION_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.ASPECT RATIO", "name": "Aspect Ratio", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "1.778"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "ASPECT_RATIO", "data_length": 30, "displayable": false, "instructions": "ASPECT_RATIO", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME HEIGHT", "name": "Frame Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 1080}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Height", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_HEIGHT", "data_length": 12, "displayable": true, "instructions": "FRAME_HEIGHT", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME WIDTH", "name": "Frame Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 1920}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Width", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_WIDTH", "data_length": 12, "displayable": true, "instructions": "FRAME_WIDTH", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.ASPECT.RATIO.POC", "name": "Aspect Ratio(POC)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "16:9"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio(POC)", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASPECT_RATIO_TABLE", "column_name": "ASPECT_RATIO", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "PRODUCT.DETAILS", "name": "Product Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200029, "metadata_element_list": [{"id": "FERRERO.TABLE.EANCODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1208, "metadata_element_list": [{"id": "EAN_CODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "EAN CODE/ 77 CODE", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "EAN.CODE", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "EAN_CODE", "column_name": "EAN_CODE_DESCRIPTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "COUNTRY", "name": "COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "EAN_CODE", "column_name": "COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKETING.ADVANCE.PRODUCT.LINK", "name": "Asset-to-product relation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset-to-product relation", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_MARKETING_ADVANCE_PRODUCT_LINK", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ADVANCE_PRODUCT_LINK", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 10182, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.SUB BRAND", "name": "Sub-Brands", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Sub-Brands", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.SUBBRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "SUB_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT WEIGHT", "name": "Product Weight", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Weight", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_WEIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.CONSUMER UNIT PACKAGING", "name": "Consumer Unit Packaging", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Consumer Unit Packaging", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PACK", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "CONSUMER_UNIT_PACKAGING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.4 DIGIT CODE", "name": "4 Digit Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "4 Digit Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "DIGITCODE", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERREO.ECOM.RETAILER_SPECIFIC_FIELD", "name": "Retailer Specific", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Retailer Specific", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "RETAILER_SPECIFIC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "cascading_group_id": "FERRERO.RETAILER.SPECIFIC", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY START PERIOD", "name": "Asset validity start period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-11T00:00:00+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity start period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_STARTING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY END PERIOD", "name": "Asset validity end period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-03-31T00:00:00+02:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity end period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_ENDING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.ASSET.NAMING.CONVENTION", "name": "Does asset need GS1 naming convention", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Does asset need GS1 naming convention", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASSETNAMINGCONVENTION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_NAMING_CONVENTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9515, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT VIEW", "name": "Product View", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product View", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT VIEW", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_VIEW", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT ANGLE", "name": "Product Angle", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Angle", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT.ANGLE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_ANGLE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT STATE", "name": "Product State", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product State", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT STATE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PROMOTION ID", "name": "Promo ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Promo ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROMO_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.BUSINESS.ASSET TYPE", "name": "Asset Type (eDAM)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Type (eDAM)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "OTMM.DOMAIN.OTMM_ASSETTYPE_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_BUSINESS_INFO", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7244, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200048, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.AGENCY NAME", "name": "Agency Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency Name", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.AGENCY_NAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AGENCY_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7336, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.CREATIX", "name": "CreativeX", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200059, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.CREATIVEX", "name": "Confidence", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1245, "metadata_element_list": [{"id": "FERRERO.TAB.FIELD.CREATIVEX", "name": "Platform > Rating (%)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Platform > Rating (%)", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_CREATIVEX", "column_name": "CREATIVEX_NEW", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CREATIVEX", "parent_table_name": "Confidence", "cascading_group_id": "FERRERO.CREATIVEX.CHAR", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.CREATIVEX LINK", "name": "CreativeX Hyperlink", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "CreativeX Hyperlink", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_CREATIVEX", "column_name": "CREATIVE_LINK", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.IP_RIGHTS", "name": "IP Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200046, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.IPRIGHT", "name": "IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IP Rights", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.IPRIGHTS", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IP_RIGHTS", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.BUYOUT", "name": "Touchpoint Scope", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Touchpoint Scope", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.TOTAL_BUYOUT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TOTAL_BUYOUT", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.FERRERO PROPERTY", "name": "Ferrero Property", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Ferrero Property", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.FERRERO_PROPERTY", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FERRERO_PROPERTY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200035, "metadata_element_list": [{"id": "FERRERO.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1209, "metadata_element_list": [{"id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "name": "IP Coverage, Area, Region & Market Unit", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Coverage, Area, Region & Market Unit", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "IPCOVERAGE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "cascading_group_id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHT TYPE", "name": "Copyright Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHT_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.MEDIATYPE", "name": "Media Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Media Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MEDIA_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "MEDIA_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE FROM", "name": "Expiration of Usage - From", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - From", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_FROM", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE TO", "name": "Expiration of Usage - To", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - To", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_TO", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO._DURATION", "name": "IP Duration", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Duration", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "ECOM_DURATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHTTYPE DETAILS", "name": "Copyright Type Details", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type Details", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHTTYPE_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 6, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.MARKET.VID_STAT_RIGHT", "name": "Video & Static Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200047, "metadata_element_list": [{"id": "FERRERO.MARKET.VID_N_STAT", "name": "Video and Static Right", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video and Static Right", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VID_AND_STAT_RIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.VID_STAT_TYPE", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1221, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.TYPE_VID", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Video & Static Right", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TYPE_VID_STAT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_MARKET_TYPE_VID_STAT", "column_name": "TYPE_OF_VIDEO_STATIC_RIGHT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.VID_STAT_TYPE", "parent_table_name": "Type of Video & Static Right", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKET.PROD_COMPANY", "name": "Production House", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Production House", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.PRODUCT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200050, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.LICENSIN", "name": "Licensing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Licensing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSING", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "cascading_group_id": "FERRERO.MARKET.CG.LICENSE", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.SPOT_DETAILS", "name": "Spot Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200049, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.SPOT_VERSION", "name": "Spot Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Version", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_VERSION", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_VERSION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.SPOT_TYPE", "name": "Spot Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_TYPE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.DIRECTOR_NAME", "name": "Director Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Director Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "DIRECTOR_NAME", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VIDEO_POST_PROD_COMPANY", "name": "Video Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VID_POST_PROD_CONTACT", "name": "Video Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_COMPANY", "name": "Audio Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_CONTACT", "name": "Audio Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.BROADCASTER.CODE", "name": "Broadcaster Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Broadcaster Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BROADCASTER_CODE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.TECHNICAL_VALIDATION", "name": "Technical Validation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Technical Validation", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TECHNICAL_VALIDATION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS", "name": "Media Analysis", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1002, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "name": "Categories", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 105, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY NAME", "name": "Category Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Category Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "NAME", "data_length": 100, "description": "Category Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY CONFIDENCE", "name": "Category Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Category Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "CONFIDENCE", "data_length": 10, "description": "Category Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES COUNT", "name": "Faces Count", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Faces Count", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACECOUNT", "column_name": "COUNT", "data_length": 10, "description": "Faces Count", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "name": "Face Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 106, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME", "name": "Recognized Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME", "data_length": 2000, "description": "Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME CONFIDENCE", "name": "Recognized Name Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME_CONFIDENCE", "data_length": 10, "description": "Name Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE", "name": "Person Age", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE", "data_length": 10, "description": "Person Age", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE CONFIDENCE", "name": "Person Age Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Person Age Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_CONFIDENCE", "data_length": 10, "description": "Person Age Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER", "name": "Gender", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Gender", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.GENDER", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER", "data_length": 40, "description": "Gender", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER CONFIDENCE", "name": "Gender Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Gender Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER_CONFIDENCE", "data_length": 10, "description": "Gender Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.FACE COORDS", "name": "Face Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "FACE_COORDS", "data_length": 200, "description": "Face Coordinates like postion, height,width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE GROUP", "name": "Person Age Group", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age Group", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.AGE GROUP", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_GROUP", "data_length": 10, "description": "Person Age Group", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "name": "Safe Content", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 107, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONTENT TYPE", "name": "Safe Content Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Safe Content Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENTS", "data_length": 20, "description": "Safe Content Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONFIDENCE", "name": "Content Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Content Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENT_CONFIDENCE", "data_length": 10, "description": "Safe Content Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "name": "Colors", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 108, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.NAME", "name": "Color", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Color", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "NAME", "data_length": 25, "description": "COLOR", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.PROPORTION", "name": "Color Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Color Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "PROPORTION", "data_length": 10, "description": "Proportion", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.FOREGROUND", "name": "Foreground Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Foreground Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "FOREGROUND", "data_length": 25, "description": "Foreground Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.BACKGROUND", "name": "Background Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Background Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "BACKGROUND", "data_length": 25, "description": "Background Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.ISBW", "name": "Is Black and White", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Is Black and White", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "ISBW", "data_length": 10, "description": "Is Black and White", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "name": "Captions", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 109, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION TEXT", "name": "Caption Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Caption Text", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "TEXT", "data_length": 2000, "description": "Caption Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION CONFIDENCE", "name": "Caption Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Caption Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "CAPTION_CONFIDENCE", "data_length": 10, "description": "Caption Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "name": "Image Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 110, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.IMAGE TYPE", "name": "Analysis Image Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Analysis Image Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_IMAGE_TYPE", "column_name": "TYPE", "data_length": 100, "description": "Image Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "parent_table_name": "Image Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.DATE", "name": "Date: Media Analysis", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-09T16:33:12+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date: Media Analysis", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MEDIA_ANALYSIS_DATE", "data_length": 25, "description": "Date Media Analysis was done on the asset.", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR LANGUAGE", "name": "Image Text Language", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Image Text Language", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "LANGUAGE", "data_length": 10, "description": "OCR data language", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR TEXT", "name": "Text on Image", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Text on Image", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "TEXT", "data_length": 4000, "description": "OCR Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "name": "Embedded Brand Info", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 119, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.NAME", "name": "Embedded Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Embedded Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Embedded Brand Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.CONFIDENCE", "name": "Embedded Brand Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Embedded Brand Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Embedded Brand Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.COORDINATES", "name": "Embedded Brand Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Embedded Brand Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "COORDINATES", "data_length": 200, "description": "Embedded Brand Coordinates like position, height, width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "HYBRIS.PRODUCT.INFO", "name": "PIM Item Reference", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200027, "metadata_element_list": [{"id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "name": "Hybris Item Reference", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1206, "metadata_element_list": [{"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ID", "name": "Hybris Item ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ID", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT TAG NAME", "name": "Hybris Assignment Label", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Assignment Label", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_TAG_NAME", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ATTRIBUTE NAME", "name": "Hybris Attribute Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Attribute Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ATTRIBUTE_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT CATALOG NAME", "name": "Hybris Catalog Mnemonic", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Catalog Mnemonic", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_CATALOG_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT PK", "name": "Hybris Item PK", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item PK", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_PK", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.SYSTEM ID", "name": "Hybris System ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris System ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "SYSTEM_ID", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.ASSIGNED", "name": "Assigned", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Assigned", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "ASSIGNED", "column_name": "ASSIGNED", "data_length": 38, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PIM TYPE", "name": "PIM Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "PIM Type", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_PIM_TYPE", "column_name": "PIM_TYPE", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS VIDEO", "name": "Media Analysis Video", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1003, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "name": "Labels", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 113, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.ID", "name": "Label Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Label Id", "values": [{"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 1}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 2}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 3}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "ID", "data_length": 40, "description": "Label Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.NAME", "name": "Label Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "text"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Label Name", "values": [{"value": {"type": "string", "value": "text"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "logo"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "food"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "dessert"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "NAME", "data_length": 40, "description": "Label Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.APPEARANCES", "name": "Label Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:03\\",\\"endTime\\":\\"0:00:03.04\\"},{\\"startTime\\":\\"0:00:07\\",\\"endTime\\":\\"0:00:08.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Label Appearances", "values": [{"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:03\\",\\"endTime\\":\\"0:00:03.04\\"},{\\"startTime\\":\\"0:00:07\\",\\"endTime\\":\\"0:00:08.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:07\\",\\"endTime\\":\\"0:00:08.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:04\\",\\"endTime\\":\\"0:00:04.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:04\\",\\"endTime\\":\\"0:00:04.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "APPEARANCES", "data_length": 0, "description": "Label Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "name": "Sentiments", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 114, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.ID", "name": "Sentiment Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "ID", "data_length": 40, "description": "Sentiment Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.NAME", "name": "Sentiment Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "NAME", "data_length": 40, "description": "Sentiment Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.APPEARANCES", "name": "Sentiment Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "APPEARANCES", "data_length": 0, "description": "Sentiment Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.SEEN.DURATION.RATIO", "name": "Sentiment Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Sentiment Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "name": "Keywords", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 115, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.ID", "name": "Keyword Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Keyword Id", "values": [{"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "ID", "data_length": 40, "description": "Keyword Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.NAME", "name": "Keyword Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "kinder"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Keyword Name", "values": [{"value": {"type": "string", "value": "kinder"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "NAME", "data_length": 40, "description": "Keyword Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.APPEARANCES", "name": "Keyword Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:05\\",\\"endTime\\":\\"0:00:08.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Keyword Appearances", "values": [{"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:05\\",\\"endTime\\":\\"0:00:08.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Keyword Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "name": "Faces", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 111, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.ID", "name": "Face Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "ID", "data_length": 40, "description": "Face Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.NAME", "name": "Face Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "NAME", "data_length": 40, "description": "Face Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.TITLE", "name": "Face Title", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Title", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "TITLE", "data_length": 249, "description": "Face Title", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.DESCRIPTION", "name": "Face Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Face Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.APPEARANCES", "name": "Face Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "APPEARANCES", "data_length": 0, "description": "Face Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SPEAKER.FACE.ID", "name": "Video Speaker Object Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Speaker Object Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "THUMBNAIL_OBJECT_ID", "data_length": 40, "description": "Video Speaker Object Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.SEEN.DURATION.RATIO", "name": "Face Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "SEEN_DURATION_RATIO", "data_length": 20, "description": "Face Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "name": "Brands", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 112, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.ID", "name": "Video Brand Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "ID", "data_length": 40, "description": "Brand Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.NAME", "name": "Video Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Brand Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.DESCRIPTION", "name": "Video Brand Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Brand Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.WIKIURL", "name": "Video Brand Wiki URL", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Wiki URL", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "WIKIURL", "data_length": 200, "description": "Brand Wiki URL", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.APPEARANCES", "name": "Video Brand Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Brand Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.SEEN.DURATION.RATIO", "name": "Video Brand Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Brand Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "name": "Speeches", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 116, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.ID", "name": "SpeechText Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "SpeechText Id", "values": [{"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 1}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 2}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 3}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 4}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 5}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 6}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 7}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 8}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 9}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 10}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 11}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 12}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "ID", "data_length": 40, "description": "SpeechText Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXT", "name": "Speech Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "ENJOY A CREAMY"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Speech Text", "values": [{"value": {"type": "string", "value": "ENJOY A CREAMY"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AND EXPLOSIVE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "TASTE EXPERIENCE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "WITH THE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "NEW SPOON"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "Kinder"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "PAPER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "a little,"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "A LITTLE GESTURE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "MEANS A LOT"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "SCOPRI DI PIÙ"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "KINDER.COM"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "a little, a Lot"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXT", "data_length": 1000, "description": "Speech Text", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXTTYPE", "name": "Speech Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "OCR"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Speech Type", "values": [{"value": {"type": "string", "value": "OCR"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "OCR"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "OCR"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "OCR"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "OCR"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "OCR"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "OCR"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "OCR"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "OCR"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "OCR"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "OCR"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "OCR"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "OCR"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXTTYPE", "data_length": 40, "description": "Speech Type", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.START TIME", "name": "Speech Start Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "0:00:01"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Speech Start Time", "values": [{"value": {"type": "string", "value": "0:00:01"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:03"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:03"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:05"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:06"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:07"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:07"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:07"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:07"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:07"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:08"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "START_TIME", "data_length": 40, "description": "Speech Start Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.END TIME", "name": "Speech End Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "0:00:02.04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Speech End Time", "values": [{"value": {"type": "string", "value": "0:00:02.04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:03.04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:03.04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:04.04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:04.04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:08.04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:06.04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:07.04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:08.04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:08.04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:08.04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:08.04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:08.04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "END_TIME", "data_length": 40, "description": "Speech End Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "name": "Speakers", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 122, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.ID", "name": "Speaker Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "ID", "data_length": 40, "description": "Speaker Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.NAME", "name": "Speaker Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "NAME", "data_length": 100, "description": "Speaker Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.APPEARANCES", "name": "Speaker Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "APPEARANCES", "data_length": 0, "description": "Speaker Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.FIELDGROUP.LOCALASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200057, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1239, "metadata_element_list": [{"id": "FERRERO.FIELD.COUNTRY", "name": "LOCAL COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "LOCAL COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USER", "name": "USER", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "USER", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_USER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.ASSOCIATION", "name": "TYPE OF ASSOCIATION", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "TYPE OF ASSOCIATION", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_ASSOCIATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.VALUE", "name": "VALUE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "VALUE", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_VALUE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "CG.CATEGORY.FADEL ASSET INFORMATION", "name": "Rights Asset Information", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200064, "metadata_element_list": [{"id": "CG.FIELD.RIGHTS MANAGED", "name": "Fadel IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fadel IP Rights", "enabled": true, "options": "", "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_RIGHTS_MANAGED_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGED", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.NEEDS RIGHTS MANAGEMENT", "name": "Needs Rights Management", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "10", "field_value": {"type": "string", "value": "N"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Needs Rights Management", "enabled": true, "options": "", "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_NEEDS_RIGHTS_MANAGEMENT_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "NEEDS_RIGHTS_MANAGEMENT", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.RIGHTS MANAGEMENT DESCRIPTION", "name": "Rights Management Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Rights Management Description", "enabled": true, "options": "", "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGEMENT_DESCRIPTION", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.RIGHTS MANAGEMENT STATUS", "name": "Rights Management Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Rights Management Status", "enabled": true, "options": "", "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_RIGHTS_MANAGEMENT_STATUS_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGEMENT_STATUS", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.FORCE SYNC", "name": "Force Sync", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Force Sync", "enabled": true, "options": "", "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_FORCE_SYNC_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "FORCE_SYNC", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.LAST SYNC TIME", "name": "Date of last data sync", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date of last data sync", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "LAST_SYNC_TIME", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "CG.CATEGORY.FADEL RIGHTS INFORMATION", "name": "Rights Information", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200065, "metadata_element_list": [{"id": "CG.TABLE.RIGHTS", "name": "Rights", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1256, "metadata_element_list": [{"id": "CG.FIELD.RIGHT TERRITORIES", "name": "Territory", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Territory", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "TERRITORY", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT USES", "name": "Use", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Use", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "USAGE", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT IN DATE", "name": "In Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "In Date", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "IN_DATE", "data_length": 10, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT OUT DATE", "name": "Out Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Out Date", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "OUT_DATE", "data_length": 10, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "saved_values_behavior_mode": 0}]}]}, {"id": "CG.CATEGORY.FADEL AGREEMENTS AND PARTIES", "name": "Agreements and Parties", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200067, "metadata_element_list": [{"id": "CG.TABLE.PARTIES.AGREEMENTS VW", "name": "Customized Table Parties and Agreements", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1258, "metadata_element_list": [{"id": "CG.FIELD.AGREEMENT NUMBER VW", "name": "Agreement Number ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Number ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_NUMBER", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT DESCRIPTION VW", "name": "Agreement Description ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Description ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_DESCRIPTION", "data_length": 2000, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT START DATE VW", "name": "Agreement Start Date ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Start Date ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_START_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT END DATE VW", "name": "Agreement End Date ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement End Date ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_END_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY NAME VW", "name": "Party Name ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Name ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_NAME", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY ROLE VW", "name": "Party Role ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Role ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_ROLE", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY EMAIL ADDRESS VW", "name": "Party Email Address ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Email Address ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_EMAIL_ADDRESS", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY PHONE NUMBER VW", "name": "Party Phone Number ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Phone Number ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_PHONE_NUMBER", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PRIMARY PARTY CONTACT VW", "name": "Primary Party Contact ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Primary Party Contact ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PRIMARY_PARTY_CONTACT", "data_length": 200, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 8, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "ARTESIA.CATEGORY.VIDEO ATTRIBUTES", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 0, "metadata_element_list": [{"id": "ARTESIA.FIELD.VIDEO.FRAMERATE", "name": "Framerate", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 25.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Framerate", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": false, "data_type": "NUMBER", "facetable": false, "searchable": false, "table_name": "VIDEO_PARENT_ASSETS", "column_name": "FRAMERATE", "data_length": 0, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.VIDEO.START SMPTE", "name": "Start Time SMPTE", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00:00:00:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Start Time SMPTE", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "VIDEO_ASSETS", "column_name": "START_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.END SMPTE", "name": "End Time SMPTE", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00:00:08:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "End Time SMPTE", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "VIDEO_ASSETS", "column_name": "END_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.START MSEC", "name": "Start Time MSEC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Start Time MSEC", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": false, "data_type": "NUMBER", "facetable": false, "searchable": false, "table_name": "VIDEO_ASSETS", "column_name": "START_MSEC", "data_length": 0, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.VIDEO.END MSEC", "name": "End Time MSEC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 8040}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "End Time MSEC", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": false, "data_type": "NUMBER", "facetable": false, "searchable": false, "table_name": "VIDEO_ASSETS", "column_name": "END_MSEC", "data_length": 0, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.VIDEO.CLIP PARENT ID", "name": "Clip Parent Id", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Clip Parent Id", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": false, "data_type": "CHAR", "facetable": false, "searchable": false, "table_name": "VIDEO_ASSETS", "column_name": "PARENT_UOI_ID", "data_length": 40, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.VIDEO.LOW RES MIME TYPE", "name": "Low Resolution Mimetype", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "video/mp4"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Low Resolution Mimetype", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": false, "data_type": "CHAR", "facetable": false, "searchable": false, "table_name": "VIDEO_URLS", "column_name": "LO_RES_MIME_TYPE", "data_length": 80, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.VIDEO.VIDEO REFERENCE", "name": "Video Reference", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 36299}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Reference", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": false, "data_type": "NUMBER", "facetable": false, "searchable": false, "table_name": "VIDEO_ASSETS", "column_name": "VIDEO_REFERENCE", "data_length": 0, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.VIDEO.DURATION MSEC", "name": "Duration MSEC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 8040}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Duration MSEC", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": false, "data_type": "NUMBER", "facetable": false, "searchable": false, "table_name": "VIDEO_ASSETS", "column_name": "DURATION_MSEC", "data_length": 0, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.VIDEO.DURATION SMPTE", "name": "Duration SMPTE", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00:00:08:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Duration SMPTE", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": false, "data_type": "CHAR", "facetable": false, "searchable": false, "table_name": "VIDEO_ASSETS", "column_name": "DURATION_SMPTE", "data_length": 11, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.VIDEO.CLIP PARENT START SMPTE", "name": "Clip Parent Start Time SMPTE", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Clip Parent Start Time SMPTE", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "VIDEO_ASSETS", "column_name": "PARENT_START_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}], "has_multilingual_fields": false}, "mime_type": "video/mp4", "path_list": [{"parents": [{"id": "90962e8228075df2ada17d7fb668aaca95c87092", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "90962e8228075df2ada17d7fb668aaca95c87092", "sequence_number": 0}, {"id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "name": "MASTER FOR FER ROCH", "container_state": "NORMAL", "original_uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "sequence_number": 0}, {"id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "name": "01. DE - Rocher ", "container_state": "NORMAL", "original_uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "sequence_number": 0}, {"id": "091216b59cad7f1ea815164c26db27e350c54023", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "sequence_number": 0}, {"id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "name": "01. Rocher", "container_state": "NORMAL", "original_uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "sequence_number": 0}, {"id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "name": "01. Ferrero Rocher", "container_state": "NORMAL", "original_uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "sequence_number": 0}, {"id": "93b0968611de11160ed068afeb9930b9965bd5ff", "name": "03. Premium Chocolate", "container_state": "NORMAL", "original_uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "sequence_number": 0}], "complete": true, "sequence_number": 1, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "90962e8228075df2ada17d7fb668aaca95c87092", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "90962e8228075df2ada17d7fb668aaca95c87092", "sequence_number": 0}, {"id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "name": "MASTER FOR FER ROCH", "container_state": "NORMAL", "original_uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "sequence_number": 0}, {"id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "name": "01. DE - Rocher ", "container_state": "NORMAL", "original_uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "sequence_number": 0}, {"id": "bfbc248a12a4bf0382406620f0d9ec41ff42e35e", "name": "01. Ferrero Rocher", "container_state": "NORMAL", "original_uoi_id": "bfbc248a12a4bf0382406620f0d9ec41ff42e35e", "sequence_number": 0}, {"id": "3d7debea6815ae46c9598191b1c645007666292a", "name": "03 . Premium Chocolate", "container_state": "NORMAL", "original_uoi_id": "3d7debea6815ae46c9598191b1c645007666292a", "sequence_number": 0}, {"id": "c0bb10be2b8f96ee4d27a2dfb7e0d03de68cf114", "name": "DE", "container_state": "NORMAL", "original_uoi_id": "c0bb10be2b8f96ee4d27a2dfb7e0d03de68cf114", "sequence_number": 0}, {"id": "b124e1ed196028bdd0e2c093e28078ca8d9ad462", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "b124e1ed196028bdd0e2c093e28078ca8d9ad462", "sequence_number": 0}, {"id": "68ce80e8c8a30badb82dabfd823886a6fa6fe309", "name": "Y - Geography", "container_state": "NORMAL", "original_uoi_id": "68ce80e8c8a30badb82dabfd823886a6fa6fe309", "sequence_number": 0}], "complete": true, "sequence_number": 1, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}], "creator_id": "1003", "asset_state": "NORMAL", "checked_out": false, "folder_path": "", "content_size": 2508962, "content_type": "VIDEO", "content_state": "NORMAL", "date_imported": "2026-01-09T16:31:22.76+01:00", "import_job_id": 224850, "streaming_url": "https://ppr.dam.ferrero.com/video/data/repository/original/vol0/227/47caa29127ffbd555f34762b1803863ca821015c_proxy.mp4", "subscribed_to": false, "collection_ids": [], "latest_version": true, "legacy_model_id": 116, "content_editable": true, "content_sub_type": "WHOLE", "import_user_name": "bizAdmin", "date_last_updated": "2026-01-09T16:34:31.08+01:00", "metadata_model_id": "ECOMMERCE", "original_asset_id": "ccc426749470e3d170bb5101f9f3e049fe26a8ef", "rendition_content": {"preview_content": {"id": "49159e38cf795269ca82fbc758f1edf38e0f13d4", "url": "/otmmapi/v6/renditions/49159e38cf795269ca82fbc758f1edf38e0f13d4", "name": "kinder-joy_video.mp4", "width": 640, "height": 360, "mime_type": "video/mp4", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "PREVIEW", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\227\\\\47caa29127ffbd555f34762b1803863ca821015c_proxy.mp4", "content_size": 853342, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "thumbnail_content": {"id": "fdfc2bf534cc141c4177067c200504956f9e8e10", "url": "/otmmapi/v6/renditions/fdfc2bf534cc141c4177067c200504956f9e8e10", "name": "fdfc2bf534cc141c4177067c200504956f9e8e10.jpg", "width": 500, "height": 282, "mime_type": "image/jpeg", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "THUMBNAIL", "content_path": "data\\\\repository\\\\thumb\\\\vol0\\\\201\\\\fdfc2bf534cc141c4177067c200504956f9e8e10_fdfc2bf534cc141c4177067c200504956f9e8e10.jpg", "content_size": 1100, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "video_rollover_content": {"id": "83239e21cd05656cbf2f8cd6f8153081f5ab8577", "url": "/otmmapi/v6/renditions/83239e21cd05656cbf2f8cd6f8153081f5ab8577", "name": "kinder-joy_video.GIF", "width": 500, "height": 282, "mime_type": "image/gif", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "ROLLOVER", "content_path": "data\\\\repository\\\\rollover\\\\vol0\\\\16\\\\83239e21cd05656cbf2f8cd6f8153081f5ab8577_rollover.gif", "content_size": 1887884, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_content_info": {"master_content": {"id": "3bc5a6ec31d05c2bb1a718e930dba8640b01dbf1", "url": "/otmmapi/v6/renditions/3bc5a6ec31d05c2bb1a718e930dba8640b01dbf1", "name": "kinder-joy_video.mp4", "width": -1, "height": -1, "mime_type": "video/mp4", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\227\\\\kinder-joy_video_3bc5a6ec31d05c2bb1a718e930dba8640b01dbf1.mp4", "content_size": 2508962, "unit_of_size": "BYTES", "content_checksum": "1d349f7b07432814a80815376ff908d9", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "supporting_content": [{"id": "47caa29127ffbd555f34762b1803863ca821015c", "url": "/otmmapi/v6/renditions/47caa29127ffbd555f34762b1803863ca821015c", "name": "kinder-joy_video.mp4", "width": 640, "height": 360, "mime_type": "video/mp4", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "SUPPORTING", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\227\\\\47caa29127ffbd555f34762b1803863ca821015c_proxy.mp4", "content_size": 853342, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}]}, "asset_state_user_id": "1003", "master_content_info": {"id": "3bc5a6ec31d05c2bb1a718e930dba8640b01dbf1", "url": "/otmmapi/v6/renditions/3bc5a6ec31d05c2bb1a718e930dba8640b01dbf1", "name": "kinder-joy_video.mp4", "width": -1, "height": -1, "mime_type": "video/mp4", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\227\\\\kinder-joy_video_3bc5a6ec31d05c2bb1a718e930dba8640b01dbf1.mp4", "content_size": 2508962, "unit_of_size": "BYTES", "content_checksum": "1d349f7b07432814a80815376ff908d9", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "delivery_service_url": "https://ppr.dam.ferrero.com/adaptivemedia/rendition?id=ccc426749470e3d170bb5101f9f3e049fe26a8ef", "product_associations": false, "security_policy_list": [{"id": 5467, "name": "Marketing Viewer", "status": "NORMAL", "created_by": "1003", "create_date": "2023-10-06T16:52:07.297+02:00", "description": "Marketing Viewer", "ownership_type": "PUBLIC"}], "thumbnail_content_id": "fdfc2bf534cc141c4177067c200504956f9e8e10", "content_state_user_id": "1003", "content_state_user_name": "OTMM BusinessAdmin", "asset_lock_state_user_id": "1003", "metadata_state_user_name": "OTMM BusinessAdmin", "progressive_download_url": "https://ppr.dam.ferrero.com/video/data/repository/original/vol0/227/47caa29127ffbd555f34762b1803863ca821015c_proxy.mp4", "access_control_descriptor": {"permissions_map": {"entry": [{"key": "text.securityPolicy.permission.Custom04Permission", "value": true}, {"key": "text.securityPolicy.permission.ContentEditPermission", "value": true}, {"key": "text.securityPolicy.permission.AssetViewPermission", "value": true}, {"key": "text.securityPolicy.permission.ProjectViewPermission", "value": true}, {"key": "text.securityPolicy.permission.MembershipEditPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom03Permission", "value": true}, {"key": "text.securityPolicy.permission.MetaDataEditPermission", "value": true}, {"key": "text.securityPolicy.permission.EditParentsPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom02Permission", "value": true}, {"key": "text.securityPolicy.permission.ExportPermission", "value": true}, {"key": "text.securityPolicy.permission.SummaryViewPermission", "value": true}, {"key": "text.securityPolicy.permission.PreviewViewPermission", "value": true}, {"key": "text.securityPolicy.permission.SubscribePermission", "value": true}, {"key": "text.securityPolicy.permission.DeleteAssetPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom01Permission", "value": true}]}}, "content_lock_state_user_id": "1003", "asset_state_last_update_date": "2026-01-09T16:34:31.08+01:00", "content_lock_state_user_name": "bizAdmin", "metadata_lock_state_user_name": "bizAdmin", "content_state_last_update_date": "2026-01-09T16:31:23.093+01:00", "inherited_metadata_collections": [{"container_id": "90962e8228075df2ada17d7fb668aaca95c87092", "container_name": "05. Final Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "90962e8228075df2ada17d7fb668aaca95c87092", "originator_id": "90962e8228075df2ada17d7fb668aaca95c87092", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "05. Final Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "container_name": "MASTER FOR FER ROCH", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "MASTER FOR FER ROCH"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000779"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "MASTER_FOR_FER_ROCH_CQ_LG_DE_PRE_0000779"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local comm on global brands"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Master Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Master Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2026/2027"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "B1"}, "display_value": "Master campaign ready for re-mastering", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ADDITIONALAPPROVER", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.LICENSING", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "d0ef653291e269a7d1ddf0ebfedd1c6ad70b1c59"}, "metadata_element": {"id": "FERRERO.FIELD.LICENSING", "name": "Campaign License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "LICENSING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}}]}, {"container_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "container_name": "01. DE - Rocher ", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "bb01cf85444107f22341d2b88421f0cbaade0bf9"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E006"}, "display_value": "GERMANY", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Local DE Editable Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Premium Chocolate Local DE Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "8f497ce53d23899c7c09aa5a7ca69c9f55c3a62d"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E64"}, "display_value": "GERMANY", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "ca70a6d55e4277ecbef2a01a593c614501cbcf74"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "3e9d669ab1047383d0416ba40af75744148c94c8"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0e241fc386dcd91baa31a409e297169fe4a352c2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "2e3e0f2be0e487b540d9b63cb8c0e9ed9c6b1bb6"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "359c98154f230a60acc6b4eb048e129411d7a778"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "b3698893fc223e8371f4e4c0d560d0536c724a09"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "e92f9f10c0c29dda8261218c2c72a0baa66472f2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "15dff42c3b196ba3ae5b3c2ea33f00e347e6f654"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Extended Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0ae044cd9dddf86cd9406c9edc3996b18c430be0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "name": "AMMC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AMMC", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LOCAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "7806fed6127b50c21f6b03e1f7b63f3dedc1e8d1"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "RMMC", "values": [{"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "4c8a2d6e178638bfacfeaf3f7f6f1000304693a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "name": "Product Asset Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Product Asset Approval Ferrero Rocher Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Asset Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCT_ASSET_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local comm on global brands"}, "display_value": "Local comm on global brands", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "5a1ae26558efdc03336c0df838dd9e7c2a51c687"}, "metadata_element": {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "name": "Market Unit", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market Unit", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETUNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "MARKET_UNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "091216b59cad7f1ea815164c26db27e350c54023", "container_name": "EU", "container_type_id": "GEOGRAPHYLOCAL", "container_type_name": "L4 - GEOGRAPHY LOCAL", "inherited_metadata_values": [{"id": "FERRERO.MARKET.FOLDER.GLOBAL", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "4c4d4bf36bf8b1ace55f990e78d6332a9cb20990"}, "metadata_element": {"id": "FERRERO.MARKET.FOLDER.GLOBAL", "name": "Global/Local (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "LOCAL"}, "display_value": "Local", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local (Marketing)", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "GLOBALLOCAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_AREA", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "3dc200c993ab8263952dc6da1498026f615f45dd"}, "metadata_element": {"id": "MARKETING_AREA", "name": "AREA", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E010"}, "display_value": "EUROPE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "AREA", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "AREA", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "AREA", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "dc7749c3e113ec9e0b9e9a3840ea55673ca5e49f"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "f2d658a3829c2ea158ae70a4b4e7928bcf88f8e2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "972d0258a82de85672bd84d8af68cdb67ad3d3ca"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "1212505ad3fe4c9d7458568f3d95aeb4c4e5c37e"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "9d1dfdef55ff7a3eb03552988ddf729c7a0f5107"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "54f006eeb366121a29ee98da33d437615dcd34e0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "1fd8802010e30d44cebb2f3eb090b12ac550f97d"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "8b6e1d8f7dc3c4671cfc11a2914d838ca3ee3f3b"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "be0dc9a87262ee7fd165237b531ba3b7aa93a260"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "2f99f0f0f9e43fb34df9222c8b73a86fb78e473e"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "container_name": "01. Rocher", "container_type_id": "GLOBALBRAND", "container_type_name": "L3 - BRAND", "inherited_metadata_values": [{"id": "FERRERO.TABULAR.NEW.BRAND", "tabular": true, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "9bb1c183135f5240f09132aef59c4ea48c762381"}, "metadata_element": {"id": "FERRERO.TABULAR.NEW.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF04"}, "display_value": "ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND (Marketing)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF04"}, "display_value": "ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "BRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TABULAR_BRAND", "column_name": "BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.NEW.BRAND", "parent_table_name": "BRAND (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "tabular": true, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "a37b13c02cba799378211e17b73234a0d836f9b6"}, "metadata_element": {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "CQ"}, "display_value": "FERRERO ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND(HARMONIZED)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "CQ"}, "display_value": "FERRERO ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.HARMONIZEDBRAND", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_HARMONIZEDBRAND", "column_name": "HARMONIZEDBRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.HARMONIZEDBRAND", "parent_table_name": "BRAND(HARMONIZED)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "AGENCY.COLLABORATION", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "183d6e0957a9940f9b18ef44f46d957802b63397"}, "metadata_element": {"id": "AGENCY.COLLABORATION", "name": "Agency collaboration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency collaboration", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "AGENCY_COLLABORATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "AGENCY.SHARING", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "d0e2b725ddfdc452cc3ba750bbe8ec059c6b01ba"}, "metadata_element": {"id": "AGENCY.SHARING", "name": "Agency sharing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency sharing", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "AGENCY_SHARING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "CONTENT.SCALING.AGENCYNAME", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "f9dfa695cc5ef8cd3fafada4e44cfdaa1522d58a"}, "metadata_element": {"id": "CONTENT.SCALING.AGENCYNAME", "name": "Content Scaling agency name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Scaling agency name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENTSCALING_AGENCYNAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "container_name": "01. Ferrero Rocher", "container_type_id": "GLOBALSUBCATEGORY", "container_type_name": "L2 - SUBCATEGORY", "inherited_metadata_values": [{"id": "MARKETING_SUBCATEGORY", "tabular": false, "value_id": {"uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "originator_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "inherited_field_id": "3000ad591e09b5c75f85fc2ccbb9ebeb31b3ab78"}, "metadata_element": {"id": "MARKETING_SUBCATEGORY", "name": "SUBCATEGORY", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Mart-Ferrero-Rocher"}, "display_value": "Ferrero Rocher", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "SUBCATEGORY", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "SUBCATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "SUBCATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "tabular": true, "value_id": {"uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "originator_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "inherited_field_id": "2c751ce760d88c0e271925ea5149348106944bfa"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Subcategory Owner", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_SUBCATEGORY_OWNER_TM", "column_name": "SUBCATEGORY_OWNER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "parent_table_name": "Subcategory Owner", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "container_name": "03. Premium Chocolate", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "originator_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E06"}, "display_value": "PREMIUM CHOCOLATE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "originator_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final Approver BPS ", "values": [{"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}], "asset_lock_state_last_update_date": "2026-01-09T16:34:31.167+01:00", "content_lock_state_last_update_date": "2026-01-09T16:31:23.207+01:00"}, "language_code": null, "language_name": null, "subject_title": null, "file_extension": ".mp4", "asset_type_name": null, "file_size_bytes": null, "duration_seconds": null, "upload_directory": "90962e8228075df2ada17d7fb668aaca95c87092", "local_campaign_id": null, "original_filename": "kinder-joy_video", "global_master_folder_id": null, "global_master_campaign_id": null} 2026-01-16 20:54:16.852162 \N 18 M5c8AY master_asset_created {"id": 18, "tags": null, "status": "active", "width_px": null, "height_px": null, "mime_type": "video/mp4", "asset_type": null, "brand_code": null, "brand_name": null, "categories": null, "created_at": "2026-01-16T20:54:24.758256", "deleted_at": null, "is_deleted": false, "updated_at": "2026-01-16T20:54:24.758256", "description": "Box File ID: 2105223083736\\nBox URL: https://app.box.com/file/2105223083736\\nDAM Asset ID: 312c9df00dc06d468e30794a7918992bcda8d0c3", "ingested_at": "2026-01-16T20:54:24.758256", "ingested_by": null, "opentext_id": "312c9df00dc06d468e30794a7918992bcda8d0c3", "tracking_id": "M5c8AY", "aspect_ratio": null, "country_code": null, "country_name": null, "full_metadata": {"name": "kinder-joy_videoE2E.mp4", "links": {"links": [], "source_id": "312c9df00dc06d468e30794a7918992bcda8d0c3"}, "locked": false, "deleted": false, "expired": false, "version": 1, "asset_id": "312c9df00dc06d468e30794a7918992bcda8d0c3", "metadata": {"id": "ECOMMERCE", "name": "Marketing Asset", "type": "com.artesia.metadata.MetadataModel", "legacy_id": 116, "metadata_element_list": [{"id": "FERRERO.CATEGORY.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200054, "metadata_element_list": [{"id": "FERRERO.FIELD.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Status", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.CONTENT_STATUS", "edit_type": "COMBO_NOTNULL", "facetable": false, "searchable": true, "table_name": "FERRERO_CONTENT_STATUS_MD", "column_name": "CONTENT_STATUS", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9215, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRER.CATEGORY.ASSET_INFO", "name": "Asset Info", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200022, "metadata_element_list": [{"id": "FERRERO.FIELD.MKTG.ASSET TYPE", "name": "Asset Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "brandbook"}, "display_value": "Brand Book", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.ASSETTYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.FISCAL YEAR", "name": "Release Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2028/2029"}, "display_value": "2028/2029", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Release Fiscal Year", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_DOMAIN_FISCAL_YEAR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "FISCAL__YEAR", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "name": "Main Languages", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1210, "metadata_element_list": [{"id": "MAIN_LANGUAGES", "name": "MAIN LANGUAGES", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "MAIN LANGUAGES", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MAIN LAGUAGES_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MAIN_LANGUAGE_TABLE", "column_name": "MAIN_LANGUAGE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "parent_table_name": "Main Languages", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.ASSET DESCRIPTION", "name": "Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Description", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "DESCR", "data_length": 249, "description": "Descriptive information", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.FLAVOUR", "name": "Flavour", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Flavour", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.FLAVOUR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FLAVOUR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.SIZE", "name": "Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Size", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.SIZE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SIZE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1241, "metadata_element_list": [{"id": "FERRERO.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Compliance", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ASSETCOMPLIANCE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_COMPLIANCE", "column_name": "ASSET_COMPLIANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "parent_table_name": "Asset Compliance", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.TAG DETAILS", "name": "Tag Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 118, "metadata_element_list": [{"id": "ARTESIA.FIELD.TAG", "name": "Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Tag", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.TAGS", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "OTMM_TAGS", "column_name": "TAG", "data_length": 80, "description": "Tag", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG CONFIDENCE", "name": "Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Confidence", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG TYPE", "name": "Tag Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Tag Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "TAG_TYPE", "data_length": 10, "description": "Tag Type", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED BY", "name": "Associated By", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Associated By", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_BY", "data_length": 10, "description": "Associated By", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED DATE", "name": "Associated Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Associated Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_DATE", "data_length": 10, "description": "Associated Date", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.STATE", "name": "Global/Local", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "GLOBAL"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO_NOTNULL", "facetable": true, "searchable": true, "table_name": "FERRERO_IC_ASSET_DETAILS", "column_name": "ASSET_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.ASPECT RATIO", "name": "Aspect Ratio (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio (Marketing)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASPECT_RATIO", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASPECT_RATIO", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "name": "Tag (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1222, "metadata_element_list": [{"id": "MARKETING_TAG", "name": "Marketing Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Marketing Tag", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.DOMAIN.TAG", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TAG_MARKET", "column_name": "TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "parent_table_name": "Tag (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.TAGS", "name": "Auto-Generated Tags", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Auto-Generated Tags", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "AUTO_GENERATED_TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CERTIFIER", "name": "Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approver", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.MARKETING.FIELD.APPROVAL DATE", "name": "Approval__Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approval__Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.LEGAL APPROVAL DATE", "name": "Legal Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CERTIFIER", "name": "IA&CC Certifier", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Certifier", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CC APPROVAL DATE", "name": "IA&CC Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "name": "Extended Approval", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1230, "metadata_element_list": [{"id": "FERRERO.FIELD.EXTENDED.APPROVAL", "name": "Extended Approval required by:", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended Approval required by:", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COMMENTS", "name": "Comment", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comment", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "COMMENTS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.DATE", "name": "Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USERS", "name": "User ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "User ID", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "USERS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXTENDED.JOBID", "name": "Extended JobID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended JobID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.MIGRATION.INDEX", "name": "Migration Index", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Migration Index", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MIGRATION.INDEX", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MIGRATION_INDEX", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "FERRERO_MARKET_MARKETING_CREATOR", "name": "Marketing Creator", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Marketing Creator", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.CREATOR", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MARKETING_CREATOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "ARTESIA.FIELD.IS LATEST VERSION", "name": "Is Latest Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Y"}, "display_value": "Yes", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Is Latest Version", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.YES_NO", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "IS_LATEST_VERSION", "data_length": 1, "description": "Is this the latest version? (Y/N)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET VERSION", "name": "Asset Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 1}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Version", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "INTEGER", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "VERSION", "data_length": 12, "description": "Version number of asset", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET_ID", "name": "Asset ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "312c9df00dc06d468e30794a7918992bcda8d0c3"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset ID", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "LOGICAL_UOI_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.ECOMMERCE STATUS", "name": "Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "PUBLISHED"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Status", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "ASSET_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CREATOR", "name": "Uploaded by", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Uploaded by", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_USER_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.FIELD.CREATION DATE", "name": "Upload Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-09T16:31:22.757+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Upload Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_DT", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.ASSET NAME", "name": "Asset Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "kinder-joy_videoE2E.mp4"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Name", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "description": "Original name of master object", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.CONTENT TYPE", "name": "Content Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "VIDEO"}, "display_value": "Video", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Type", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.CONTENT_TYPES", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "CONTENT_TYPE", "data_length": 8, "description": "Content Type", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.MIME TYPE", "name": "File Extension", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "video/mp4"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Extension", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_MIME_TYPE", "data_length": 80, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.FILE.SIZE", "name": "File Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "long", "value": 3080691}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Size", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "LONG", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_SIZE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP RESOLUTION", "name": "Bitmap Resolution", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Resolution", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_RESOLUTION", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP WIDTH", "name": "Bitmap Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Width", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_WIDTH", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP HEIGHT", "name": "Bitmap Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Height", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_HEIGHT", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "name": "Approval Metadata", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1249, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.DEPARTMENT", "name": "Department", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Department", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "DEPARTMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.CERTIFIER", "name": "Certifier", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Certifier", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL DATE", "name": "Approval Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Approval Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "APPROVAL_DATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.COMMENT", "name": "Comments", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comments", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "COMMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.TYPE OF APPROVAL", "name": "Type of Approval", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Approval", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "TYPE_OF_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL STATUS", "name": "Approval Status", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Approval Status", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "APPROVAL_STATUS", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.SUB JOBID", "name": "Sub Job Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sub Job Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.VIDEO.BIT_RATE", "name": "Bitrate", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 2487939.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitrate", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "BIT_RATE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.EMBEDDED.FIELD.DURATION", "name": "Duration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00:00:09:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Duration", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "DURATION_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.ASPECT RATIO", "name": "Aspect Ratio", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "1.778"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "ASPECT_RATIO", "data_length": 30, "displayable": false, "instructions": "ASPECT_RATIO", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME HEIGHT", "name": "Frame Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 1080}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Height", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_HEIGHT", "data_length": 12, "displayable": true, "instructions": "FRAME_HEIGHT", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME WIDTH", "name": "Frame Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 1920}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Width", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_WIDTH", "data_length": 12, "displayable": true, "instructions": "FRAME_WIDTH", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.ASPECT.RATIO.POC", "name": "Aspect Ratio(POC)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "16:9"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio(POC)", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASPECT_RATIO_TABLE", "column_name": "ASPECT_RATIO", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "PRODUCT.DETAILS", "name": "Product Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200029, "metadata_element_list": [{"id": "FERRERO.TABLE.EANCODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1208, "metadata_element_list": [{"id": "EAN_CODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "EAN CODE/ 77 CODE", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "EAN.CODE", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "EAN_CODE", "column_name": "EAN_CODE_DESCRIPTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "COUNTRY", "name": "COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "EAN_CODE", "column_name": "COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKETING.ADVANCE.PRODUCT.LINK", "name": "Asset-to-product relation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset-to-product relation", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_MARKETING_ADVANCE_PRODUCT_LINK", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ADVANCE_PRODUCT_LINK", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 10182, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.SUB BRAND", "name": "Sub-Brands", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Sub-Brands", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.SUBBRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "SUB_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT WEIGHT", "name": "Product Weight", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Weight", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_WEIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.CONSUMER UNIT PACKAGING", "name": "Consumer Unit Packaging", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Consumer Unit Packaging", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PACK", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "CONSUMER_UNIT_PACKAGING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.4 DIGIT CODE", "name": "4 Digit Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "4 Digit Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "DIGITCODE", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERREO.ECOM.RETAILER_SPECIFIC_FIELD", "name": "Retailer Specific", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Retailer Specific", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "RETAILER_SPECIFIC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "cascading_group_id": "FERRERO.RETAILER.SPECIFIC", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY START PERIOD", "name": "Asset validity start period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-11T00:00:00+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity start period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_STARTING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY END PERIOD", "name": "Asset validity end period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-03-31T00:00:00+02:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity end period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_ENDING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.ASSET.NAMING.CONVENTION", "name": "Does asset need GS1 naming convention", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Does asset need GS1 naming convention", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASSETNAMINGCONVENTION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_NAMING_CONVENTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9515, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT VIEW", "name": "Product View", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product View", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT VIEW", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_VIEW", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT ANGLE", "name": "Product Angle", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Angle", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT.ANGLE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_ANGLE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT STATE", "name": "Product State", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product State", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT STATE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PROMOTION ID", "name": "Promo ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Promo ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROMO_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.BUSINESS.ASSET TYPE", "name": "Asset Type (eDAM)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Type (eDAM)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "OTMM.DOMAIN.OTMM_ASSETTYPE_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_BUSINESS_INFO", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7244, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200048, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.AGENCY NAME", "name": "Agency Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency Name", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.AGENCY_NAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AGENCY_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7336, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.CREATIX", "name": "CreativeX", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200059, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.CREATIVEX", "name": "Confidence", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1245, "metadata_element_list": [{"id": "FERRERO.TAB.FIELD.CREATIVEX", "name": "Platform > Rating (%)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Platform > Rating (%)", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_CREATIVEX", "column_name": "CREATIVEX_NEW", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CREATIVEX", "parent_table_name": "Confidence", "cascading_group_id": "FERRERO.CREATIVEX.CHAR", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.CREATIVEX LINK", "name": "CreativeX Hyperlink", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "CreativeX Hyperlink", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_CREATIVEX", "column_name": "CREATIVE_LINK", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.IP_RIGHTS", "name": "IP Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200046, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.IPRIGHT", "name": "IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IP Rights", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.IPRIGHTS", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IP_RIGHTS", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.BUYOUT", "name": "Touchpoint Scope", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Touchpoint Scope", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.TOTAL_BUYOUT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TOTAL_BUYOUT", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.FERRERO PROPERTY", "name": "Ferrero Property", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Ferrero Property", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.FERRERO_PROPERTY", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FERRERO_PROPERTY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200035, "metadata_element_list": [{"id": "FERRERO.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1209, "metadata_element_list": [{"id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "name": "IP Coverage, Area, Region & Market Unit", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Coverage, Area, Region & Market Unit", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "IPCOVERAGE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "cascading_group_id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHT TYPE", "name": "Copyright Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHT_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.MEDIATYPE", "name": "Media Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Media Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MEDIA_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "MEDIA_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE FROM", "name": "Expiration of Usage - From", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - From", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_FROM", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE TO", "name": "Expiration of Usage - To", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - To", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_TO", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO._DURATION", "name": "IP Duration", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Duration", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "ECOM_DURATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHTTYPE DETAILS", "name": "Copyright Type Details", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type Details", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHTTYPE_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 6, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.MARKET.VID_STAT_RIGHT", "name": "Video & Static Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200047, "metadata_element_list": [{"id": "FERRERO.MARKET.VID_N_STAT", "name": "Video and Static Right", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video and Static Right", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VID_AND_STAT_RIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.VID_STAT_TYPE", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1221, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.TYPE_VID", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Video & Static Right", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TYPE_VID_STAT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_MARKET_TYPE_VID_STAT", "column_name": "TYPE_OF_VIDEO_STATIC_RIGHT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.VID_STAT_TYPE", "parent_table_name": "Type of Video & Static Right", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKET.PROD_COMPANY", "name": "Production House", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Production House", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.PRODUCT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200050, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.LICENSIN", "name": "Licensing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Licensing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSING", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "cascading_group_id": "FERRERO.MARKET.CG.LICENSE", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.SPOT_DETAILS", "name": "Spot Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200049, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.SPOT_VERSION", "name": "Spot Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Version", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_VERSION", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_VERSION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.SPOT_TYPE", "name": "Spot Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_TYPE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.DIRECTOR_NAME", "name": "Director Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Director Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "DIRECTOR_NAME", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VIDEO_POST_PROD_COMPANY", "name": "Video Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VID_POST_PROD_CONTACT", "name": "Video Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_COMPANY", "name": "Audio Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_CONTACT", "name": "Audio Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.BROADCASTER.CODE", "name": "Broadcaster Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Broadcaster Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BROADCASTER_CODE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.TECHNICAL_VALIDATION", "name": "Technical Validation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Technical Validation", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TECHNICAL_VALIDATION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS", "name": "Media Analysis", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1002, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "name": "Categories", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 105, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY NAME", "name": "Category Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Category Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "NAME", "data_length": 100, "description": "Category Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY CONFIDENCE", "name": "Category Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Category Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "CONFIDENCE", "data_length": 10, "description": "Category Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES COUNT", "name": "Faces Count", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Faces Count", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACECOUNT", "column_name": "COUNT", "data_length": 10, "description": "Faces Count", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "name": "Face Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 106, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME", "name": "Recognized Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME", "data_length": 2000, "description": "Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME CONFIDENCE", "name": "Recognized Name Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME_CONFIDENCE", "data_length": 10, "description": "Name Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE", "name": "Person Age", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE", "data_length": 10, "description": "Person Age", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE CONFIDENCE", "name": "Person Age Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Person Age Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_CONFIDENCE", "data_length": 10, "description": "Person Age Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER", "name": "Gender", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Gender", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.GENDER", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER", "data_length": 40, "description": "Gender", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER CONFIDENCE", "name": "Gender Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Gender Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER_CONFIDENCE", "data_length": 10, "description": "Gender Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.FACE COORDS", "name": "Face Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "FACE_COORDS", "data_length": 200, "description": "Face Coordinates like postion, height,width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE GROUP", "name": "Person Age Group", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age Group", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.AGE GROUP", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_GROUP", "data_length": 10, "description": "Person Age Group", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "name": "Safe Content", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 107, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONTENT TYPE", "name": "Safe Content Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Safe Content Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENTS", "data_length": 20, "description": "Safe Content Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONFIDENCE", "name": "Content Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Content Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENT_CONFIDENCE", "data_length": 10, "description": "Safe Content Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "name": "Colors", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 108, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.NAME", "name": "Color", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Color", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "NAME", "data_length": 25, "description": "COLOR", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.PROPORTION", "name": "Color Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Color Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "PROPORTION", "data_length": 10, "description": "Proportion", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.FOREGROUND", "name": "Foreground Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Foreground Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "FOREGROUND", "data_length": 25, "description": "Foreground Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.BACKGROUND", "name": "Background Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Background Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "BACKGROUND", "data_length": 25, "description": "Background Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.ISBW", "name": "Is Black and White", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Is Black and White", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "ISBW", "data_length": 10, "description": "Is Black and White", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "name": "Captions", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 109, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION TEXT", "name": "Caption Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Caption Text", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "TEXT", "data_length": 2000, "description": "Caption Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION CONFIDENCE", "name": "Caption Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Caption Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "CAPTION_CONFIDENCE", "data_length": 10, "description": "Caption Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "name": "Image Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 110, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.IMAGE TYPE", "name": "Analysis Image Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Analysis Image Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_IMAGE_TYPE", "column_name": "TYPE", "data_length": 100, "description": "Image Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "parent_table_name": "Image Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.DATE", "name": "Date: Media Analysis", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-09T16:33:13+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date: Media Analysis", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MEDIA_ANALYSIS_DATE", "data_length": 25, "description": "Date Media Analysis was done on the asset.", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR LANGUAGE", "name": "Image Text Language", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Image Text Language", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "LANGUAGE", "data_length": 10, "description": "OCR data language", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR TEXT", "name": "Text on Image", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Text on Image", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "TEXT", "data_length": 4000, "description": "OCR Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "name": "Embedded Brand Info", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 119, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.NAME", "name": "Embedded Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Embedded Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Embedded Brand Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.CONFIDENCE", "name": "Embedded Brand Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Embedded Brand Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Embedded Brand Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.COORDINATES", "name": "Embedded Brand Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Embedded Brand Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "COORDINATES", "data_length": 200, "description": "Embedded Brand Coordinates like position, height, width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "HYBRIS.PRODUCT.INFO", "name": "PIM Item Reference", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200027, "metadata_element_list": [{"id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "name": "Hybris Item Reference", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1206, "metadata_element_list": [{"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ID", "name": "Hybris Item ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ID", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT TAG NAME", "name": "Hybris Assignment Label", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Assignment Label", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_TAG_NAME", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ATTRIBUTE NAME", "name": "Hybris Attribute Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Attribute Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ATTRIBUTE_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT CATALOG NAME", "name": "Hybris Catalog Mnemonic", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Catalog Mnemonic", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_CATALOG_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT PK", "name": "Hybris Item PK", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item PK", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_PK", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.SYSTEM ID", "name": "Hybris System ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris System ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "SYSTEM_ID", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.ASSIGNED", "name": "Assigned", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Assigned", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "ASSIGNED", "column_name": "ASSIGNED", "data_length": 38, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PIM TYPE", "name": "PIM Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "PIM Type", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_PIM_TYPE", "column_name": "PIM_TYPE", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS VIDEO", "name": "Media Analysis Video", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1003, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "name": "Labels", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 113, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.ID", "name": "Label Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Label Id", "values": [{"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 1}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 2}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "ID", "data_length": 40, "description": "Label Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.NAME", "name": "Label Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "clothing"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Label Name", "values": [{"value": {"type": "string", "value": "clothing"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "fabric"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "candy"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "NAME", "data_length": 40, "description": "Label Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.APPEARANCES", "name": "Label Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:03\\",\\"endTime\\":\\"0:00:03.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Label Appearances", "values": [{"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:03\\",\\"endTime\\":\\"0:00:03.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:03\\",\\"endTime\\":\\"0:00:03.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:07\\",\\"endTime\\":\\"0:00:07.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "APPEARANCES", "data_length": 0, "description": "Label Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "name": "Sentiments", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 114, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.ID", "name": "Sentiment Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "ID", "data_length": 40, "description": "Sentiment Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.NAME", "name": "Sentiment Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "NAME", "data_length": 40, "description": "Sentiment Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.APPEARANCES", "name": "Sentiment Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "APPEARANCES", "data_length": 0, "description": "Sentiment Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.SEEN.DURATION.RATIO", "name": "Sentiment Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Sentiment Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "name": "Keywords", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 115, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.ID", "name": "Keyword Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "ID", "data_length": 40, "description": "Keyword Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.NAME", "name": "Keyword Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "NAME", "data_length": 40, "description": "Keyword Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.APPEARANCES", "name": "Keyword Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Keyword Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "name": "Faces", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 111, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.ID", "name": "Face Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "ID", "data_length": 40, "description": "Face Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.NAME", "name": "Face Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "NAME", "data_length": 40, "description": "Face Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.TITLE", "name": "Face Title", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Title", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "TITLE", "data_length": 249, "description": "Face Title", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.DESCRIPTION", "name": "Face Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Face Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.APPEARANCES", "name": "Face Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "APPEARANCES", "data_length": 0, "description": "Face Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SPEAKER.FACE.ID", "name": "Video Speaker Object Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Speaker Object Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "THUMBNAIL_OBJECT_ID", "data_length": 40, "description": "Video Speaker Object Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.SEEN.DURATION.RATIO", "name": "Face Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "SEEN_DURATION_RATIO", "data_length": 20, "description": "Face Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "name": "Brands", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 112, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.ID", "name": "Video Brand Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "ID", "data_length": 40, "description": "Brand Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.NAME", "name": "Video Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Brand Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.DESCRIPTION", "name": "Video Brand Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Brand Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.WIKIURL", "name": "Video Brand Wiki URL", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Wiki URL", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "WIKIURL", "data_length": 200, "description": "Brand Wiki URL", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.APPEARANCES", "name": "Video Brand Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Brand Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.SEEN.DURATION.RATIO", "name": "Video Brand Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Brand Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "name": "Speeches", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 116, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.ID", "name": "SpeechText Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "SpeechText Id", "values": [{"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "ID", "data_length": 40, "description": "SpeechText Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXT", "name": "Speech Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Kinder"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Speech Text", "values": [{"value": {"type": "string", "value": "Kinder"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXT", "data_length": 1000, "description": "Speech Text", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXTTYPE", "name": "Speech Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "OCR"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Speech Type", "values": [{"value": {"type": "string", "value": "OCR"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXTTYPE", "data_length": 40, "description": "Speech Type", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.START TIME", "name": "Speech Start Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "0:00:09"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Speech Start Time", "values": [{"value": {"type": "string", "value": "0:00:09"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "START_TIME", "data_length": 40, "description": "Speech Start Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.END TIME", "name": "Speech End Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "0:00:09.04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Speech End Time", "values": [{"value": {"type": "string", "value": "0:00:09.04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "END_TIME", "data_length": 40, "description": "Speech End Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "name": "Speakers", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 122, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.ID", "name": "Speaker Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "ID", "data_length": 40, "description": "Speaker Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.NAME", "name": "Speaker Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "NAME", "data_length": 100, "description": "Speaker Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.APPEARANCES", "name": "Speaker Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "APPEARANCES", "data_length": 0, "description": "Speaker Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.FIELDGROUP.LOCALASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200057, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1239, "metadata_element_list": [{"id": "FERRERO.FIELD.COUNTRY", "name": "LOCAL COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "LOCAL COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USER", "name": "USER", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "USER", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_USER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.ASSOCIATION", "name": "TYPE OF ASSOCIATION", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "TYPE OF ASSOCIATION", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_ASSOCIATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.VALUE", "name": "VALUE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "VALUE", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_VALUE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "CG.CATEGORY.FADEL ASSET INFORMATION", "name": "Rights Asset Information", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200064, "metadata_element_list": [{"id": "CG.FIELD.RIGHTS MANAGED", "name": "Fadel IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fadel IP Rights", "enabled": true, "options": "", "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_RIGHTS_MANAGED_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGED", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.NEEDS RIGHTS MANAGEMENT", "name": "Needs Rights Management", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "10", "field_value": {"type": "string", "value": "N"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Needs Rights Management", "enabled": true, "options": "", "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_NEEDS_RIGHTS_MANAGEMENT_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "NEEDS_RIGHTS_MANAGEMENT", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.RIGHTS MANAGEMENT DESCRIPTION", "name": "Rights Management Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Rights Management Description", "enabled": true, "options": "", "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGEMENT_DESCRIPTION", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.RIGHTS MANAGEMENT STATUS", "name": "Rights Management Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Rights Management Status", "enabled": true, "options": "", "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_RIGHTS_MANAGEMENT_STATUS_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGEMENT_STATUS", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.FORCE SYNC", "name": "Force Sync", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Force Sync", "enabled": true, "options": "", "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_FORCE_SYNC_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "FORCE_SYNC", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.LAST SYNC TIME", "name": "Date of last data sync", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date of last data sync", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "LAST_SYNC_TIME", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "CG.CATEGORY.FADEL RIGHTS INFORMATION", "name": "Rights Information", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200065, "metadata_element_list": [{"id": "CG.TABLE.RIGHTS", "name": "Rights", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1256, "metadata_element_list": [{"id": "CG.FIELD.RIGHT TERRITORIES", "name": "Territory", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Territory", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "TERRITORY", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT USES", "name": "Use", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Use", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "USAGE", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT IN DATE", "name": "In Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "In Date", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "IN_DATE", "data_length": 10, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT OUT DATE", "name": "Out Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Out Date", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "OUT_DATE", "data_length": 10, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "saved_values_behavior_mode": 0}]}]}, {"id": "CG.CATEGORY.FADEL AGREEMENTS AND PARTIES", "name": "Agreements and Parties", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200067, "metadata_element_list": [{"id": "CG.TABLE.PARTIES.AGREEMENTS VW", "name": "Customized Table Parties and Agreements", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1258, "metadata_element_list": [{"id": "CG.FIELD.AGREEMENT NUMBER VW", "name": "Agreement Number ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Number ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_NUMBER", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT DESCRIPTION VW", "name": "Agreement Description ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Description ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_DESCRIPTION", "data_length": 2000, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT START DATE VW", "name": "Agreement Start Date ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Start Date ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_START_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT END DATE VW", "name": "Agreement End Date ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement End Date ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_END_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY NAME VW", "name": "Party Name ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Name ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_NAME", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY ROLE VW", "name": "Party Role ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Role ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_ROLE", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY EMAIL ADDRESS VW", "name": "Party Email Address ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Email Address ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_EMAIL_ADDRESS", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY PHONE NUMBER VW", "name": "Party Phone Number ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Phone Number ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_PHONE_NUMBER", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PRIMARY PARTY CONTACT VW", "name": "Primary Party Contact ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Primary Party Contact ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PRIMARY_PARTY_CONTACT", "data_length": 200, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 8, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "ARTESIA.CATEGORY.VIDEO ATTRIBUTES", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 0, "metadata_element_list": []}], "has_multilingual_fields": false}, "mime_type": "video/mp4", "path_list": [{"parents": [{"id": "90962e8228075df2ada17d7fb668aaca95c87092", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "90962e8228075df2ada17d7fb668aaca95c87092", "sequence_number": 0}, {"id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "name": "MASTER FOR FER ROCH", "container_state": "NORMAL", "original_uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "sequence_number": 0}, {"id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "name": "01. DE - Rocher ", "container_state": "NORMAL", "original_uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "sequence_number": 0}, {"id": "091216b59cad7f1ea815164c26db27e350c54023", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "sequence_number": 0}, {"id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "name": "01. Rocher", "container_state": "NORMAL", "original_uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "sequence_number": 0}, {"id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "name": "01. Ferrero Rocher", "container_state": "NORMAL", "original_uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "sequence_number": 0}, {"id": "93b0968611de11160ed068afeb9930b9965bd5ff", "name": "03. Premium Chocolate", "container_state": "NORMAL", "original_uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "90962e8228075df2ada17d7fb668aaca95c87092", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "90962e8228075df2ada17d7fb668aaca95c87092", "sequence_number": 0}, {"id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "name": "MASTER FOR FER ROCH", "container_state": "NORMAL", "original_uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "sequence_number": 0}, {"id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "name": "01. DE - Rocher ", "container_state": "NORMAL", "original_uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "sequence_number": 0}, {"id": "bfbc248a12a4bf0382406620f0d9ec41ff42e35e", "name": "01. Ferrero Rocher", "container_state": "NORMAL", "original_uoi_id": "bfbc248a12a4bf0382406620f0d9ec41ff42e35e", "sequence_number": 0}, {"id": "3d7debea6815ae46c9598191b1c645007666292a", "name": "03 . Premium Chocolate", "container_state": "NORMAL", "original_uoi_id": "3d7debea6815ae46c9598191b1c645007666292a", "sequence_number": 0}, {"id": "c0bb10be2b8f96ee4d27a2dfb7e0d03de68cf114", "name": "DE", "container_state": "NORMAL", "original_uoi_id": "c0bb10be2b8f96ee4d27a2dfb7e0d03de68cf114", "sequence_number": 0}, {"id": "b124e1ed196028bdd0e2c093e28078ca8d9ad462", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "b124e1ed196028bdd0e2c093e28078ca8d9ad462", "sequence_number": 0}, {"id": "68ce80e8c8a30badb82dabfd823886a6fa6fe309", "name": "Y - Geography", "container_state": "NORMAL", "original_uoi_id": "68ce80e8c8a30badb82dabfd823886a6fa6fe309", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}], "creator_id": "1003", "asset_state": "NORMAL", "checked_out": false, "folder_path": "", "content_size": 3080691, "content_type": "VIDEO", "content_state": "NORMAL", "date_imported": "2026-01-09T16:31:22.757+01:00", "import_job_id": 224850, "streaming_url": "https://ppr.dam.ferrero.com/video/data/repository/original/vol0/227/3e9383fd918d201a957214ea0a3e8091f358f74e_proxy.mp4", "subscribed_to": false, "collection_ids": [], "latest_version": true, "legacy_model_id": 116, "content_editable": true, "content_sub_type": "WHOLE", "import_user_name": "bizAdmin", "date_last_updated": "2026-01-09T16:34:31.08+01:00", "metadata_model_id": "ECOMMERCE", "original_asset_id": "312c9df00dc06d468e30794a7918992bcda8d0c3", "rendition_content": {"preview_content": {"id": "7057c1ba638c9ebe7e09ce035e1810b53b75fcf9", "url": "/otmmapi/v6/renditions/7057c1ba638c9ebe7e09ce035e1810b53b75fcf9", "name": "kinder-joy_videoE2E.mp4", "width": 640, "height": 360, "mime_type": "video/mp4", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "PREVIEW", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\227\\\\3e9383fd918d201a957214ea0a3e8091f358f74e_proxy.mp4", "content_size": 1177223, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "thumbnail_content": {"id": "4edf95577c6e1c13c01aad24cb541ebd4ccd2cfc", "url": "/otmmapi/v6/renditions/4edf95577c6e1c13c01aad24cb541ebd4ccd2cfc", "name": "4edf95577c6e1c13c01aad24cb541ebd4ccd2cfc.jpg", "width": 500, "height": 282, "mime_type": "image/jpeg", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "THUMBNAIL", "content_path": "data\\\\repository\\\\thumb\\\\vol0\\\\201\\\\4edf95577c6e1c13c01aad24cb541ebd4ccd2cfc_4edf95577c6e1c13c01aad24cb541ebd4ccd2cfc.jpg", "content_size": 13491, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "video_rollover_content": {"id": "d43f1ee64a70f45962dcd151b5d3826453b7e0bd", "url": "/otmmapi/v6/renditions/d43f1ee64a70f45962dcd151b5d3826453b7e0bd", "name": "kinder-joy_videoE2E.GIF", "width": 500, "height": 282, "mime_type": "image/gif", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "ROLLOVER", "content_path": "data\\\\repository\\\\rollover\\\\vol0\\\\16\\\\d43f1ee64a70f45962dcd151b5d3826453b7e0bd_rollover.gif", "content_size": 4110720, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_content_info": {"master_content": {"id": "32e3a391923942d3746e6d0a851be49ac4ddce3b", "url": "/otmmapi/v6/renditions/32e3a391923942d3746e6d0a851be49ac4ddce3b", "name": "kinder-joy_videoE2E.mp4", "width": -1, "height": -1, "mime_type": "video/mp4", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\227\\\\kinder-joy_videoE2E_32e3a391923942d3746e6d0a851be49ac4ddce3b.mp4", "content_size": 3080691, "unit_of_size": "BYTES", "content_checksum": "b36d1e9f85efe2c69693dde123d6c3b2", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "supporting_content": [{"id": "3e9383fd918d201a957214ea0a3e8091f358f74e", "url": "/otmmapi/v6/renditions/3e9383fd918d201a957214ea0a3e8091f358f74e", "name": "kinder-joy_videoE2E.mp4", "width": 640, "height": 360, "mime_type": "video/mp4", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "SUPPORTING", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\227\\\\3e9383fd918d201a957214ea0a3e8091f358f74e_proxy.mp4", "content_size": 1177223, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}]}, "asset_state_user_id": "1003", "master_content_info": {"id": "32e3a391923942d3746e6d0a851be49ac4ddce3b", "url": "/otmmapi/v6/renditions/32e3a391923942d3746e6d0a851be49ac4ddce3b", "name": "kinder-joy_videoE2E.mp4", "width": -1, "height": -1, "mime_type": "video/mp4", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\227\\\\kinder-joy_videoE2E_32e3a391923942d3746e6d0a851be49ac4ddce3b.mp4", "content_size": 3080691, "unit_of_size": "BYTES", "content_checksum": "b36d1e9f85efe2c69693dde123d6c3b2", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "delivery_service_url": "https://ppr.dam.ferrero.com/adaptivemedia/rendition?id=312c9df00dc06d468e30794a7918992bcda8d0c3", "product_associations": false, "security_policy_list": [{"id": 5467, "name": "Marketing Viewer", "status": "NORMAL", "created_by": "1003", "create_date": "2023-10-06T16:52:07.297+02:00", "description": "Marketing Viewer", "ownership_type": "PUBLIC"}], "thumbnail_content_id": "4edf95577c6e1c13c01aad24cb541ebd4ccd2cfc", "content_state_user_id": "1003", "content_state_user_name": "OTMM BusinessAdmin", "asset_lock_state_user_id": "1003", "metadata_state_user_name": "OTMM BusinessAdmin", "progressive_download_url": "https://ppr.dam.ferrero.com/video/data/repository/original/vol0/227/3e9383fd918d201a957214ea0a3e8091f358f74e_proxy.mp4", "access_control_descriptor": {"permissions_map": {"entry": [{"key": "text.securityPolicy.permission.Custom04Permission", "value": true}, {"key": "text.securityPolicy.permission.ContentEditPermission", "value": true}, {"key": "text.securityPolicy.permission.AssetViewPermission", "value": true}, {"key": "text.securityPolicy.permission.ProjectViewPermission", "value": true}, {"key": "text.securityPolicy.permission.MembershipEditPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom03Permission", "value": true}, {"key": "text.securityPolicy.permission.MetaDataEditPermission", "value": true}, {"key": "text.securityPolicy.permission.EditParentsPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom02Permission", "value": true}, {"key": "text.securityPolicy.permission.ExportPermission", "value": true}, {"key": "text.securityPolicy.permission.SummaryViewPermission", "value": true}, {"key": "text.securityPolicy.permission.PreviewViewPermission", "value": true}, {"key": "text.securityPolicy.permission.SubscribePermission", "value": true}, {"key": "text.securityPolicy.permission.DeleteAssetPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom01Permission", "value": true}]}}, "content_lock_state_user_id": "1003", "asset_state_last_update_date": "2026-01-09T16:34:31.08+01:00", "content_lock_state_user_name": "bizAdmin", "metadata_lock_state_user_name": "bizAdmin", "content_state_last_update_date": "2026-01-09T16:31:23.04+01:00", "inherited_metadata_collections": [{"container_id": "90962e8228075df2ada17d7fb668aaca95c87092", "container_name": "05. Final Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "90962e8228075df2ada17d7fb668aaca95c87092", "originator_id": "90962e8228075df2ada17d7fb668aaca95c87092", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "05. Final Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "container_name": "MASTER FOR FER ROCH", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "MASTER FOR FER ROCH"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000779"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "MASTER_FOR_FER_ROCH_CQ_LG_DE_PRE_0000779"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local comm on global brands"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Master Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Master Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2026/2027"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "B1"}, "display_value": "Master campaign ready for re-mastering", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ADDITIONALAPPROVER", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.LICENSING", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "d0ef653291e269a7d1ddf0ebfedd1c6ad70b1c59"}, "metadata_element": {"id": "FERRERO.FIELD.LICENSING", "name": "Campaign License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "LICENSING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}}]}, {"container_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "container_name": "01. DE - Rocher ", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "bb01cf85444107f22341d2b88421f0cbaade0bf9"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E006"}, "display_value": "GERMANY", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Local DE Editable Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Premium Chocolate Local DE Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "8f497ce53d23899c7c09aa5a7ca69c9f55c3a62d"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E64"}, "display_value": "GERMANY", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "ca70a6d55e4277ecbef2a01a593c614501cbcf74"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "3e9d669ab1047383d0416ba40af75744148c94c8"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0e241fc386dcd91baa31a409e297169fe4a352c2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "2e3e0f2be0e487b540d9b63cb8c0e9ed9c6b1bb6"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "359c98154f230a60acc6b4eb048e129411d7a778"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "b3698893fc223e8371f4e4c0d560d0536c724a09"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "e92f9f10c0c29dda8261218c2c72a0baa66472f2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "15dff42c3b196ba3ae5b3c2ea33f00e347e6f654"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Extended Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0ae044cd9dddf86cd9406c9edc3996b18c430be0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "name": "AMMC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AMMC", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LOCAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "7806fed6127b50c21f6b03e1f7b63f3dedc1e8d1"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "RMMC", "values": [{"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "4c8a2d6e178638bfacfeaf3f7f6f1000304693a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "name": "Product Asset Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Product Asset Approval Ferrero Rocher Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Asset Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCT_ASSET_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local comm on global brands"}, "display_value": "Local comm on global brands", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "5a1ae26558efdc03336c0df838dd9e7c2a51c687"}, "metadata_element": {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "name": "Market Unit", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market Unit", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETUNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "MARKET_UNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "091216b59cad7f1ea815164c26db27e350c54023", "container_name": "EU", "container_type_id": "GEOGRAPHYLOCAL", "container_type_name": "L4 - GEOGRAPHY LOCAL", "inherited_metadata_values": [{"id": "FERRERO.MARKET.FOLDER.GLOBAL", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "4c4d4bf36bf8b1ace55f990e78d6332a9cb20990"}, "metadata_element": {"id": "FERRERO.MARKET.FOLDER.GLOBAL", "name": "Global/Local (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "LOCAL"}, "display_value": "Local", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local (Marketing)", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "GLOBALLOCAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_AREA", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "3dc200c993ab8263952dc6da1498026f615f45dd"}, "metadata_element": {"id": "MARKETING_AREA", "name": "AREA", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E010"}, "display_value": "EUROPE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "AREA", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "AREA", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "AREA", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "dc7749c3e113ec9e0b9e9a3840ea55673ca5e49f"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "f2d658a3829c2ea158ae70a4b4e7928bcf88f8e2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "972d0258a82de85672bd84d8af68cdb67ad3d3ca"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "1212505ad3fe4c9d7458568f3d95aeb4c4e5c37e"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "9d1dfdef55ff7a3eb03552988ddf729c7a0f5107"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "54f006eeb366121a29ee98da33d437615dcd34e0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "1fd8802010e30d44cebb2f3eb090b12ac550f97d"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "8b6e1d8f7dc3c4671cfc11a2914d838ca3ee3f3b"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "be0dc9a87262ee7fd165237b531ba3b7aa93a260"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "2f99f0f0f9e43fb34df9222c8b73a86fb78e473e"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "container_name": "01. Rocher", "container_type_id": "GLOBALBRAND", "container_type_name": "L3 - BRAND", "inherited_metadata_values": [{"id": "FERRERO.TABULAR.NEW.BRAND", "tabular": true, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "9bb1c183135f5240f09132aef59c4ea48c762381"}, "metadata_element": {"id": "FERRERO.TABULAR.NEW.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF04"}, "display_value": "ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND (Marketing)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF04"}, "display_value": "ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "BRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TABULAR_BRAND", "column_name": "BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.NEW.BRAND", "parent_table_name": "BRAND (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "tabular": true, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "a37b13c02cba799378211e17b73234a0d836f9b6"}, "metadata_element": {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "CQ"}, "display_value": "FERRERO ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND(HARMONIZED)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "CQ"}, "display_value": "FERRERO ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.HARMONIZEDBRAND", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_HARMONIZEDBRAND", "column_name": "HARMONIZEDBRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.HARMONIZEDBRAND", "parent_table_name": "BRAND(HARMONIZED)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "AGENCY.COLLABORATION", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "183d6e0957a9940f9b18ef44f46d957802b63397"}, "metadata_element": {"id": "AGENCY.COLLABORATION", "name": "Agency collaboration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency collaboration", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "AGENCY_COLLABORATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "AGENCY.SHARING", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "d0e2b725ddfdc452cc3ba750bbe8ec059c6b01ba"}, "metadata_element": {"id": "AGENCY.SHARING", "name": "Agency sharing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency sharing", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "AGENCY_SHARING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "CONTENT.SCALING.AGENCYNAME", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "f9dfa695cc5ef8cd3fafada4e44cfdaa1522d58a"}, "metadata_element": {"id": "CONTENT.SCALING.AGENCYNAME", "name": "Content Scaling agency name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Scaling agency name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENTSCALING_AGENCYNAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "container_name": "01. Ferrero Rocher", "container_type_id": "GLOBALSUBCATEGORY", "container_type_name": "L2 - SUBCATEGORY", "inherited_metadata_values": [{"id": "MARKETING_SUBCATEGORY", "tabular": false, "value_id": {"uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "originator_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "inherited_field_id": "3000ad591e09b5c75f85fc2ccbb9ebeb31b3ab78"}, "metadata_element": {"id": "MARKETING_SUBCATEGORY", "name": "SUBCATEGORY", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Mart-Ferrero-Rocher"}, "display_value": "Ferrero Rocher", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "SUBCATEGORY", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "SUBCATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "SUBCATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "tabular": true, "value_id": {"uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "originator_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "inherited_field_id": "2c751ce760d88c0e271925ea5149348106944bfa"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Subcategory Owner", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_SUBCATEGORY_OWNER_TM", "column_name": "SUBCATEGORY_OWNER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "parent_table_name": "Subcategory Owner", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "container_name": "03. Premium Chocolate", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "originator_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E06"}, "display_value": "PREMIUM CHOCOLATE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "originator_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final Approver BPS ", "values": [{"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}], "asset_lock_state_last_update_date": "2026-01-09T16:34:31.167+01:00", "content_lock_state_last_update_date": "2026-01-09T16:31:23.207+01:00"}, "language_code": null, "language_name": null, "subject_title": null, "file_extension": ".mp4", "asset_type_name": null, "file_size_bytes": null, "duration_seconds": null, "upload_directory": "90962e8228075df2ada17d7fb668aaca95c87092", "local_campaign_id": null, "original_filename": "kinder-joy_videoE2E", "global_master_folder_id": null, "global_master_campaign_id": null} 2026-01-16 20:54:24.758256 \N 19 MoFRIA master_asset_created {"id": 19, "tags": null, "status": "active", "width_px": null, "height_px": null, "mime_type": "image/jpeg", "asset_type": null, "brand_code": null, "brand_name": null, "categories": null, "created_at": "2026-01-16T20:54:45.211417", "deleted_at": null, "is_deleted": false, "updated_at": "2026-01-16T20:54:45.211417", "description": "Box File ID: 2105226618225\\nBox URL: https://app.box.com/file/2105226618225\\nDAM Asset ID: b5e69f3efdd81cd3a604708ed10c55a466d68b0e", "ingested_at": "2026-01-16T20:54:45.211417", "ingested_by": null, "opentext_id": "b5e69f3efdd81cd3a604708ed10c55a466d68b0e", "tracking_id": "MoFRIA", "aspect_ratio": null, "country_code": null, "country_name": null, "full_metadata": {"name": "download.jpg", "links": {"links": [], "source_id": "b5e69f3efdd81cd3a604708ed10c55a466d68b0e"}, "locked": false, "deleted": false, "expired": false, "version": 1, "asset_id": "b5e69f3efdd81cd3a604708ed10c55a466d68b0e", "metadata": {"id": "ECOMMERCE", "name": "Marketing Asset", "type": "com.artesia.metadata.MetadataModel", "legacy_id": 116, "metadata_element_list": [{"id": "FERRERO.CATEGORY.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200054, "metadata_element_list": [{"id": "FERRERO.FIELD.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Status", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.CONTENT_STATUS", "edit_type": "COMBO_NOTNULL", "facetable": false, "searchable": true, "table_name": "FERRERO_CONTENT_STATUS_MD", "column_name": "CONTENT_STATUS", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9215, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRER.CATEGORY.ASSET_INFO", "name": "Asset Info", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200022, "metadata_element_list": [{"id": "FERRERO.FIELD.MKTG.ASSET TYPE", "name": "Asset Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.ASSETTYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.FISCAL YEAR", "name": "Release Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2026/2027"}, "display_value": "2026/2027", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Release Fiscal Year", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_DOMAIN_FISCAL_YEAR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "FISCAL__YEAR", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "name": "Main Languages", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1210, "metadata_element_list": [{"id": "MAIN_LANGUAGES", "name": "MAIN LANGUAGES", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "MAIN LANGUAGES", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MAIN LAGUAGES_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MAIN_LANGUAGE_TABLE", "column_name": "MAIN_LANGUAGE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "parent_table_name": "Main Languages", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.ASSET DESCRIPTION", "name": "Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Description", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "DESCR", "data_length": 249, "description": "Descriptive information", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.FLAVOUR", "name": "Flavour", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Flavour", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.FLAVOUR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FLAVOUR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.SIZE", "name": "Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Size", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.SIZE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SIZE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1241, "metadata_element_list": [{"id": "FERRERO.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Compliance", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ASSETCOMPLIANCE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_COMPLIANCE", "column_name": "ASSET_COMPLIANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "parent_table_name": "Asset Compliance", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.TAG DETAILS", "name": "Tag Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 118, "metadata_element_list": [{"id": "ARTESIA.FIELD.TAG", "name": "Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "food", "field_value": {"type": "string", "value": "food"}, "display_value": "food", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Tag", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "food", "field_value": {"type": "string", "value": "food"}, "display_value": "food", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.TAGS", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "OTMM_TAGS", "column_name": "TAG", "data_length": 80, "description": "Tag", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG CONFIDENCE", "name": "Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 67.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Confidence", "values": [{"value": {"type": "decimal", "value": 67.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Confidence", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG TYPE", "name": "Tag Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Tag Type", "values": [{"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "TAG_TYPE", "data_length": 10, "description": "Tag Type", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED BY", "name": "Associated By", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Associated By", "values": [{"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_BY", "data_length": 10, "description": "Associated By", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED DATE", "name": "Associated Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-14T14:24:27.55+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Associated Date", "values": [{"value": {"type": "dateTime", "value": "2026-01-14T14:24:27.55+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_DATE", "data_length": 10, "description": "Associated Date", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.STATE", "name": "Global/Local", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "GLOBAL"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO_NOTNULL", "facetable": true, "searchable": true, "table_name": "FERRERO_IC_ASSET_DETAILS", "column_name": "ASSET_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.ASPECT RATIO", "name": "Aspect Ratio (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio (Marketing)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASPECT_RATIO", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASPECT_RATIO", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "name": "Tag (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1222, "metadata_element_list": [{"id": "MARKETING_TAG", "name": "Marketing Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Marketing Tag", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.DOMAIN.TAG", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TAG_MARKET", "column_name": "TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "parent_table_name": "Tag (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.TAGS", "name": "Auto-Generated Tags", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Auto-Generated Tags", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "AUTO_GENERATED_TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CERTIFIER", "name": "Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approver", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.MARKETING.FIELD.APPROVAL DATE", "name": "Approval__Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approval__Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.LEGAL APPROVAL DATE", "name": "Legal Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CERTIFIER", "name": "IA&CC Certifier", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Certifier", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CC APPROVAL DATE", "name": "IA&CC Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "name": "Extended Approval", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1230, "metadata_element_list": [{"id": "FERRERO.FIELD.EXTENDED.APPROVAL", "name": "Extended Approval required by:", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended Approval required by:", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COMMENTS", "name": "Comment", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comment", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "COMMENTS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.DATE", "name": "Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USERS", "name": "User ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "User ID", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "USERS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXTENDED.JOBID", "name": "Extended JobID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended JobID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.MIGRATION.INDEX", "name": "Migration Index", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Migration Index", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MIGRATION.INDEX", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MIGRATION_INDEX", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "FERRERO_MARKET_MARKETING_CREATOR", "name": "Marketing Creator", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Marketing Creator", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.CREATOR", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MARKETING_CREATOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "ARTESIA.FIELD.IS LATEST VERSION", "name": "Is Latest Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Y"}, "display_value": "Yes", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Is Latest Version", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.YES_NO", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "IS_LATEST_VERSION", "data_length": 1, "description": "Is this the latest version? (Y/N)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET VERSION", "name": "Asset Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 1}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Version", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "INTEGER", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "VERSION", "data_length": 12, "description": "Version number of asset", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET_ID", "name": "Asset ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "b5e69f3efdd81cd3a604708ed10c55a466d68b0e"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset ID", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "LOGICAL_UOI_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.ECOMMERCE STATUS", "name": "Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "PUBLISHED"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Status", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "ASSET_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CREATOR", "name": "Uploaded by", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Uploaded by", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_USER_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.FIELD.CREATION DATE", "name": "Upload Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-14T14:23:41.747+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Upload Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_DT", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.ASSET NAME", "name": "Asset Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "download.jpg"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Name", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "description": "Original name of master object", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.CONTENT TYPE", "name": "Content Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "BITMAP"}, "display_value": "Image", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Type", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.CONTENT_TYPES", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "CONTENT_TYPE", "data_length": 8, "description": "Content Type", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.MIME TYPE", "name": "File Extension", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "image/jpeg"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Extension", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_MIME_TYPE", "data_length": 80, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.FILE.SIZE", "name": "File Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "long", "value": 18093}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Size", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "LONG", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_SIZE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP RESOLUTION", "name": "Bitmap Resolution", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 72}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Resolution", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_RESOLUTION", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP WIDTH", "name": "Bitmap Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 257}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Width", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_WIDTH", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP HEIGHT", "name": "Bitmap Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 196}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Height", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_HEIGHT", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "name": "Approval Metadata", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1249, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.DEPARTMENT", "name": "Department", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Department", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "DEPARTMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.CERTIFIER", "name": "Certifier", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Certifier", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL DATE", "name": "Approval Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Approval Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "APPROVAL_DATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.COMMENT", "name": "Comments", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comments", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "COMMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.TYPE OF APPROVAL", "name": "Type of Approval", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Approval", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "TYPE_OF_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL STATUS", "name": "Approval Status", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Approval Status", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "APPROVAL_STATUS", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.SUB JOBID", "name": "Sub Job Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sub Job Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.VIDEO.BIT_RATE", "name": "Bitrate", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitrate", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "BIT_RATE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.EMBEDDED.FIELD.DURATION", "name": "Duration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Duration", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "DURATION_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.ASPECT RATIO", "name": "Aspect Ratio", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "ASPECT_RATIO", "data_length": 30, "displayable": false, "instructions": "ASPECT_RATIO", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME HEIGHT", "name": "Frame Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Height", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_HEIGHT", "data_length": 12, "displayable": true, "instructions": "FRAME_HEIGHT", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME WIDTH", "name": "Frame Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Width", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_WIDTH", "data_length": 12, "displayable": true, "instructions": "FRAME_WIDTH", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.ASPECT.RATIO.POC", "name": "Aspect Ratio(POC)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio(POC)", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASPECT_RATIO_TABLE", "column_name": "ASPECT_RATIO", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "PRODUCT.DETAILS", "name": "Product Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200029, "metadata_element_list": [{"id": "FERRERO.TABLE.EANCODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1208, "metadata_element_list": [{"id": "EAN_CODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "EAN CODE/ 77 CODE", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "EAN.CODE", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "EAN_CODE", "column_name": "EAN_CODE_DESCRIPTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "COUNTRY", "name": "COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "EAN_CODE", "column_name": "COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKETING.ADVANCE.PRODUCT.LINK", "name": "Asset-to-product relation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset-to-product relation", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_MARKETING_ADVANCE_PRODUCT_LINK", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ADVANCE_PRODUCT_LINK", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 10182, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.SUB BRAND", "name": "Sub-Brands", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Sub-Brands", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.SUBBRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "SUB_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT WEIGHT", "name": "Product Weight", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Weight", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_WEIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.CONSUMER UNIT PACKAGING", "name": "Consumer Unit Packaging", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Consumer Unit Packaging", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PACK", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "CONSUMER_UNIT_PACKAGING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.4 DIGIT CODE", "name": "4 Digit Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "4 Digit Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "DIGITCODE", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERREO.ECOM.RETAILER_SPECIFIC_FIELD", "name": "Retailer Specific", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Retailer Specific", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "RETAILER_SPECIFIC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "cascading_group_id": "FERRERO.RETAILER.SPECIFIC", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY START PERIOD", "name": "Asset validity start period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity start period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_STARTING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY END PERIOD", "name": "Asset validity end period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity end period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_ENDING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.ASSET.NAMING.CONVENTION", "name": "Does asset need GS1 naming convention", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Does asset need GS1 naming convention", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASSETNAMINGCONVENTION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_NAMING_CONVENTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9515, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT VIEW", "name": "Product View", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product View", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT VIEW", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_VIEW", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT ANGLE", "name": "Product Angle", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Angle", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT.ANGLE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_ANGLE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT STATE", "name": "Product State", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product State", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT STATE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PROMOTION ID", "name": "Promo ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Promo ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROMO_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.BUSINESS.ASSET TYPE", "name": "Asset Type (eDAM)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Angled view", "field_value": {"type": "string", "value": "angledview"}, "display_value": "ANGLED VIEW", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Type (eDAM)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "OTMM.DOMAIN.OTMM_ASSETTYPE_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_BUSINESS_INFO", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7244, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200048, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.AGENCY NAME", "name": "Agency Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "0000000001"}, "display_value": "ATest", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Agency Name", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.AGENCY_NAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AGENCY_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7336, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.CREATIX", "name": "CreativeX", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200059, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.CREATIVEX", "name": "Confidence", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1245, "metadata_element_list": [{"id": "FERRERO.TAB.FIELD.CREATIVEX", "name": "Platform > Rating (%)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Platform > Rating (%)", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_CREATIVEX", "column_name": "CREATIVEX_NEW", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CREATIVEX", "parent_table_name": "Confidence", "cascading_group_id": "FERRERO.CREATIVEX.CHAR", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.CREATIVEX LINK", "name": "CreativeX Hyperlink", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "CreativeX Hyperlink", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_CREATIVEX", "column_name": "CREATIVE_LINK", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.IP_RIGHTS", "name": "IP Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200046, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.IPRIGHT", "name": "IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IP Rights", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.IPRIGHTS", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IP_RIGHTS", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.BUYOUT", "name": "Touchpoint Scope", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Touchpoint Scope", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.TOTAL_BUYOUT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TOTAL_BUYOUT", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.FERRERO PROPERTY", "name": "Ferrero Property", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Ferrero Property", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.FERRERO_PROPERTY", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FERRERO_PROPERTY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200035, "metadata_element_list": [{"id": "FERRERO.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1209, "metadata_element_list": [{"id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "name": "IP Coverage, Area, Region & Market Unit", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Coverage, Area, Region & Market Unit", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "IPCOVERAGE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "cascading_group_id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHT TYPE", "name": "Copyright Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHT_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.MEDIATYPE", "name": "Media Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Media Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MEDIA_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "MEDIA_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE FROM", "name": "Expiration of Usage - From", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - From", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_FROM", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE TO", "name": "Expiration of Usage - To", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - To", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_TO", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO._DURATION", "name": "IP Duration", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Duration", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "ECOM_DURATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHTTYPE DETAILS", "name": "Copyright Type Details", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type Details", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHTTYPE_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 6, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.MARKET.VID_STAT_RIGHT", "name": "Video & Static Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200047, "metadata_element_list": [{"id": "FERRERO.MARKET.VID_N_STAT", "name": "Video and Static Right", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video and Static Right", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VID_AND_STAT_RIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.VID_STAT_TYPE", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1221, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.TYPE_VID", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Video & Static Right", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TYPE_VID_STAT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_MARKET_TYPE_VID_STAT", "column_name": "TYPE_OF_VIDEO_STATIC_RIGHT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.VID_STAT_TYPE", "parent_table_name": "Type of Video & Static Right", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKET.PROD_COMPANY", "name": "Production House", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Production House", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.PRODUCT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200050, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.LICENSIN", "name": "Licensing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Licensing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSING", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "cascading_group_id": "FERRERO.MARKET.CG.LICENSE", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.SPOT_DETAILS", "name": "Spot Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200049, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.SPOT_VERSION", "name": "Spot Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Version", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_VERSION", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_VERSION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.SPOT_TYPE", "name": "Spot Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_TYPE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.DIRECTOR_NAME", "name": "Director Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Director Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "DIRECTOR_NAME", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VIDEO_POST_PROD_COMPANY", "name": "Video Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VID_POST_PROD_CONTACT", "name": "Video Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_COMPANY", "name": "Audio Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_CONTACT", "name": "Audio Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.BROADCASTER.CODE", "name": "Broadcaster Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Broadcaster Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BROADCASTER_CODE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.TECHNICAL_VALIDATION", "name": "Technical Validation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Technical Validation", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TECHNICAL_VALIDATION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS", "name": "Media Analysis", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1002, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "name": "Categories", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 105, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY NAME", "name": "Category Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "indoor_marketstore"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Category Name", "values": [{"value": {"type": "string", "value": "indoor_marketstore"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "NAME", "data_length": 100, "description": "Category Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY CONFIDENCE", "name": "Category Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 56.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Category Confidence", "values": [{"value": {"type": "decimal", "value": 56.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "CONFIDENCE", "data_length": 10, "description": "Category Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES COUNT", "name": "Faces Count", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Faces Count", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACECOUNT", "column_name": "COUNT", "data_length": 10, "description": "Faces Count", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "name": "Face Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 106, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME", "name": "Recognized Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME", "data_length": 2000, "description": "Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME CONFIDENCE", "name": "Recognized Name Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME_CONFIDENCE", "data_length": 10, "description": "Name Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE", "name": "Person Age", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE", "data_length": 10, "description": "Person Age", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE CONFIDENCE", "name": "Person Age Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Person Age Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_CONFIDENCE", "data_length": 10, "description": "Person Age Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER", "name": "Gender", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Gender", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.GENDER", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER", "data_length": 40, "description": "Gender", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER CONFIDENCE", "name": "Gender Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Gender Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER_CONFIDENCE", "data_length": 10, "description": "Gender Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.FACE COORDS", "name": "Face Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "FACE_COORDS", "data_length": 200, "description": "Face Coordinates like postion, height,width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE GROUP", "name": "Person Age Group", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age Group", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.AGE GROUP", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_GROUP", "data_length": 10, "description": "Person Age Group", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "name": "Safe Content", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 107, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONTENT TYPE", "name": "Safe Content Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Safe Content Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENTS", "data_length": 20, "description": "Safe Content Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONFIDENCE", "name": "Content Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Content Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENT_CONFIDENCE", "data_length": 10, "description": "Safe Content Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "name": "Colors", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 108, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.NAME", "name": "Color", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Yellow"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Color", "values": [{"value": {"type": "string", "value": "Yellow"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "Grey"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "NAME", "data_length": 25, "description": "COLOR", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.PROPORTION", "name": "Color Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Color Confidence", "values": [{"is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "PROPORTION", "data_length": 10, "description": "Proportion", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.FOREGROUND", "name": "Foreground Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Yellow"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Foreground Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "FOREGROUND", "data_length": 25, "description": "Foreground Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.BACKGROUND", "name": "Background Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Grey"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Background Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "BACKGROUND", "data_length": 25, "description": "Background Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.ISBW", "name": "Is Black and White", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "false"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Is Black and White", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "ISBW", "data_length": 10, "description": "Is Black and White", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "name": "Captions", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 109, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION TEXT", "name": "Caption Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "a close up of a keyboard"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Caption Text", "values": [{"value": {"type": "string", "value": "a close up of a keyboard"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "TEXT", "data_length": 2000, "description": "Caption Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION CONFIDENCE", "name": "Caption Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 56.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Caption Confidence", "values": [{"value": {"type": "decimal", "value": 56.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "CAPTION_CONFIDENCE", "data_length": 10, "description": "Caption Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "name": "Image Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 110, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.IMAGE TYPE", "name": "Analysis Image Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Analysis Image Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_IMAGE_TYPE", "column_name": "TYPE", "data_length": 100, "description": "Image Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "parent_table_name": "Image Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.DATE", "name": "Date: Media Analysis", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-14T14:24:27+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date: Media Analysis", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MEDIA_ANALYSIS_DATE", "data_length": 25, "description": "Date Media Analysis was done on the asset.", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR LANGUAGE", "name": "Image Text Language", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "unk"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Image Text Language", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "LANGUAGE", "data_length": 10, "description": "OCR data language", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR TEXT", "name": "Text on Image", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Text on Image", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "TEXT", "data_length": 4000, "description": "OCR Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "name": "Embedded Brand Info", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 119, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.NAME", "name": "Embedded Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Embedded Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Embedded Brand Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.CONFIDENCE", "name": "Embedded Brand Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Embedded Brand Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Embedded Brand Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.COORDINATES", "name": "Embedded Brand Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Embedded Brand Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "COORDINATES", "data_length": 200, "description": "Embedded Brand Coordinates like position, height, width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "HYBRIS.PRODUCT.INFO", "name": "PIM Item Reference", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200027, "metadata_element_list": [{"id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "name": "Hybris Item Reference", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1206, "metadata_element_list": [{"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ID", "name": "Hybris Item ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ID", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT TAG NAME", "name": "Hybris Assignment Label", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Assignment Label", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_TAG_NAME", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ATTRIBUTE NAME", "name": "Hybris Attribute Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Attribute Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ATTRIBUTE_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT CATALOG NAME", "name": "Hybris Catalog Mnemonic", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Catalog Mnemonic", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_CATALOG_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT PK", "name": "Hybris Item PK", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item PK", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_PK", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.SYSTEM ID", "name": "Hybris System ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris System ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "SYSTEM_ID", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.ASSIGNED", "name": "Assigned", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Assigned", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "ASSIGNED", "column_name": "ASSIGNED", "data_length": 38, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PIM TYPE", "name": "PIM Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "PIM Type", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_PIM_TYPE", "column_name": "PIM_TYPE", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS VIDEO", "name": "Media Analysis Video", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1003, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "name": "Labels", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 113, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.ID", "name": "Label Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "ID", "data_length": 40, "description": "Label Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.NAME", "name": "Label Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "NAME", "data_length": 40, "description": "Label Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.APPEARANCES", "name": "Label Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "APPEARANCES", "data_length": 0, "description": "Label Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "name": "Sentiments", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 114, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.ID", "name": "Sentiment Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "ID", "data_length": 40, "description": "Sentiment Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.NAME", "name": "Sentiment Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "NAME", "data_length": 40, "description": "Sentiment Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.APPEARANCES", "name": "Sentiment Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "APPEARANCES", "data_length": 0, "description": "Sentiment Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.SEEN.DURATION.RATIO", "name": "Sentiment Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Sentiment Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "name": "Keywords", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 115, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.ID", "name": "Keyword Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "ID", "data_length": 40, "description": "Keyword Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.NAME", "name": "Keyword Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "NAME", "data_length": 40, "description": "Keyword Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.APPEARANCES", "name": "Keyword Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Keyword Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "name": "Faces", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 111, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.ID", "name": "Face Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "ID", "data_length": 40, "description": "Face Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.NAME", "name": "Face Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "NAME", "data_length": 40, "description": "Face Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.TITLE", "name": "Face Title", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Title", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "TITLE", "data_length": 249, "description": "Face Title", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.DESCRIPTION", "name": "Face Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Face Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.APPEARANCES", "name": "Face Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "APPEARANCES", "data_length": 0, "description": "Face Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SPEAKER.FACE.ID", "name": "Video Speaker Object Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Speaker Object Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "THUMBNAIL_OBJECT_ID", "data_length": 40, "description": "Video Speaker Object Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.SEEN.DURATION.RATIO", "name": "Face Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "SEEN_DURATION_RATIO", "data_length": 20, "description": "Face Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "name": "Brands", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 112, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.ID", "name": "Video Brand Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "ID", "data_length": 40, "description": "Brand Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.NAME", "name": "Video Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Brand Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.DESCRIPTION", "name": "Video Brand Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Brand Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.WIKIURL", "name": "Video Brand Wiki URL", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Wiki URL", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "WIKIURL", "data_length": 200, "description": "Brand Wiki URL", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.APPEARANCES", "name": "Video Brand Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Brand Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.SEEN.DURATION.RATIO", "name": "Video Brand Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Brand Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "name": "Speeches", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 116, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.ID", "name": "SpeechText Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "SpeechText Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "ID", "data_length": 40, "description": "SpeechText Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXT", "name": "Speech Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Text", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXT", "data_length": 1000, "description": "Speech Text", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXTTYPE", "name": "Speech Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXTTYPE", "data_length": 40, "description": "Speech Type", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.START TIME", "name": "Speech Start Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Start Time", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "START_TIME", "data_length": 40, "description": "Speech Start Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.END TIME", "name": "Speech End Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech End Time", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "END_TIME", "data_length": 40, "description": "Speech End Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "name": "Speakers", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 122, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.ID", "name": "Speaker Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "ID", "data_length": 40, "description": "Speaker Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.NAME", "name": "Speaker Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "NAME", "data_length": 100, "description": "Speaker Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.APPEARANCES", "name": "Speaker Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "APPEARANCES", "data_length": 0, "description": "Speaker Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.FIELDGROUP.LOCALASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200057, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1239, "metadata_element_list": [{"id": "FERRERO.FIELD.COUNTRY", "name": "LOCAL COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "LOCAL COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USER", "name": "USER", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "USER", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_USER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.ASSOCIATION", "name": "TYPE OF ASSOCIATION", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "TYPE OF ASSOCIATION", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_ASSOCIATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.VALUE", "name": "VALUE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "VALUE", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_VALUE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "CG.CATEGORY.FADEL ASSET INFORMATION", "name": "Rights Asset Information", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200064, "metadata_element_list": [{"id": "CG.FIELD.RIGHTS MANAGED", "name": "Fadel IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fadel IP Rights", "enabled": true, "options": "", "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_RIGHTS_MANAGED_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGED", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.NEEDS RIGHTS MANAGEMENT", "name": "Needs Rights Management", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "10", "field_value": {"type": "string", "value": "N"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Needs Rights Management", "enabled": true, "options": "", "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_NEEDS_RIGHTS_MANAGEMENT_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "NEEDS_RIGHTS_MANAGEMENT", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.RIGHTS MANAGEMENT DESCRIPTION", "name": "Rights Management Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Rights Management Description", "enabled": true, "options": "", "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGEMENT_DESCRIPTION", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.RIGHTS MANAGEMENT STATUS", "name": "Rights Management Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Rights Management Status", "enabled": true, "options": "", "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_RIGHTS_MANAGEMENT_STATUS_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGEMENT_STATUS", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.FORCE SYNC", "name": "Force Sync", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Force Sync", "enabled": true, "options": "", "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_FORCE_SYNC_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "FORCE_SYNC", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.LAST SYNC TIME", "name": "Date of last data sync", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date of last data sync", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "LAST_SYNC_TIME", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "CG.CATEGORY.FADEL RIGHTS INFORMATION", "name": "Rights Information", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200065, "metadata_element_list": [{"id": "CG.TABLE.RIGHTS", "name": "Rights", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1256, "metadata_element_list": [{"id": "CG.FIELD.RIGHT TERRITORIES", "name": "Territory", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Territory", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "TERRITORY", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT USES", "name": "Use", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Use", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "USAGE", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT IN DATE", "name": "In Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "In Date", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "IN_DATE", "data_length": 10, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT OUT DATE", "name": "Out Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Out Date", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "OUT_DATE", "data_length": 10, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "saved_values_behavior_mode": 0}]}]}, {"id": "CG.CATEGORY.FADEL AGREEMENTS AND PARTIES", "name": "Agreements and Parties", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200067, "metadata_element_list": [{"id": "CG.TABLE.PARTIES.AGREEMENTS VW", "name": "Customized Table Parties and Agreements", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1258, "metadata_element_list": [{"id": "CG.FIELD.AGREEMENT NUMBER VW", "name": "Agreement Number ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Number ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_NUMBER", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT DESCRIPTION VW", "name": "Agreement Description ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Description ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_DESCRIPTION", "data_length": 2000, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT START DATE VW", "name": "Agreement Start Date ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Start Date ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_START_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT END DATE VW", "name": "Agreement End Date ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement End Date ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_END_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY NAME VW", "name": "Party Name ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Name ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_NAME", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY ROLE VW", "name": "Party Role ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Role ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_ROLE", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY EMAIL ADDRESS VW", "name": "Party Email Address ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Email Address ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_EMAIL_ADDRESS", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY PHONE NUMBER VW", "name": "Party Phone Number ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Phone Number ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_PHONE_NUMBER", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PRIMARY PARTY CONTACT VW", "name": "Primary Party Contact ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Primary Party Contact ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PRIMARY_PARTY_CONTACT", "data_length": 200, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 8, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}], "has_multilingual_fields": false}, "mime_type": "image/jpeg", "path_list": [{"parents": [{"id": "d4d9835db002b9992125246f2abb7117c99ab016", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "d4d9835db002b9992125246f2abb7117c99ab016", "sequence_number": 0}, {"id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "name": "MASTER CAMP FER ROCHER 12.01.2", "container_state": "NORMAL", "original_uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "sequence_number": 0}, {"id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "name": "01. DE - Rocher ", "container_state": "NORMAL", "original_uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "sequence_number": 0}, {"id": "091216b59cad7f1ea815164c26db27e350c54023", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "sequence_number": 0}, {"id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "name": "01. Rocher", "container_state": "NORMAL", "original_uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "sequence_number": 0}, {"id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "name": "01. Ferrero Rocher", "container_state": "NORMAL", "original_uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "sequence_number": 0}, {"id": "93b0968611de11160ed068afeb9930b9965bd5ff", "name": "03. Premium Chocolate", "container_state": "NORMAL", "original_uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "sequence_number": 0}], "complete": true, "sequence_number": 2, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "sequence_number": 0}, {"id": "4b05a895330aa2fb6046f59731aba5dd93858431", "name": "LOCADAPLOCCOMM - FER ROCHER 4", "container_state": "NORMAL", "original_uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "sequence_number": 0}, {"id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "name": "25-26", "container_state": "NORMAL", "original_uoi_id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "sequence_number": 0}, {"id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "name": "02. Campaign", "container_state": "NORMAL", "original_uoi_id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "sequence_number": 0}, {"id": "f31042cfc487f066486c46527c076b8ee6618ceb", "name": "01. Standard", "container_state": "NORMAL", "original_uoi_id": "f31042cfc487f066486c46527c076b8ee6618ceb", "sequence_number": 0}, {"id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "name": "02. Sweden", "container_state": "NORMAL", "original_uoi_id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "sequence_number": 0}, {"id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "name": "SCANDINAVIA", "container_state": "NORMAL", "original_uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "sequence_number": 0}, {"id": "f2649309eb916c5c25bb309e3db061042c3eecca", "name": "01. MC - Rocher", "container_state": "NORMAL", "original_uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "sequence_number": 0}, {"id": "091216b59cad7f1ea815164c26db27e350c54023", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "sequence_number": 0}, {"id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "name": "01. Rocher", "container_state": "NORMAL", "original_uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "sequence_number": 0}, {"id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "name": "01. Ferrero Rocher", "container_state": "NORMAL", "original_uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "sequence_number": 0}, {"id": "93b0968611de11160ed068afeb9930b9965bd5ff", "name": "03. Premium Chocolate", "container_state": "NORMAL", "original_uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "d4d9835db002b9992125246f2abb7117c99ab016", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "d4d9835db002b9992125246f2abb7117c99ab016", "sequence_number": 0}, {"id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "name": "MASTER CAMP FER ROCHER 12.01.2", "container_state": "NORMAL", "original_uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "sequence_number": 0}, {"id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "name": "01. DE - Rocher ", "container_state": "NORMAL", "original_uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "sequence_number": 0}, {"id": "bfbc248a12a4bf0382406620f0d9ec41ff42e35e", "name": "01. Ferrero Rocher", "container_state": "NORMAL", "original_uoi_id": "bfbc248a12a4bf0382406620f0d9ec41ff42e35e", "sequence_number": 0}, {"id": "3d7debea6815ae46c9598191b1c645007666292a", "name": "03 . Premium Chocolate", "container_state": "NORMAL", "original_uoi_id": "3d7debea6815ae46c9598191b1c645007666292a", "sequence_number": 0}, {"id": "c0bb10be2b8f96ee4d27a2dfb7e0d03de68cf114", "name": "DE", "container_state": "NORMAL", "original_uoi_id": "c0bb10be2b8f96ee4d27a2dfb7e0d03de68cf114", "sequence_number": 0}, {"id": "b124e1ed196028bdd0e2c093e28078ca8d9ad462", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "b124e1ed196028bdd0e2c093e28078ca8d9ad462", "sequence_number": 0}, {"id": "68ce80e8c8a30badb82dabfd823886a6fa6fe309", "name": "Y - Geography", "container_state": "NORMAL", "original_uoi_id": "68ce80e8c8a30badb82dabfd823886a6fa6fe309", "sequence_number": 0}], "complete": true, "sequence_number": 2, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "sequence_number": 0}, {"id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "name": "Read Only", "container_state": "NORMAL", "original_uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "sequence_number": 0}, {"id": "23b155c32d5c6142914b41458234c100812bbec8", "name": "Oliver", "container_state": "NORMAL", "original_uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "sequence_number": 0}, {"id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "name": "Z - Exchange", "container_state": "NORMAL", "original_uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}], "creator_id": "1003", "asset_state": "NORMAL", "checked_out": false, "folder_path": "", "content_size": 18093, "content_type": "BITMAP", "content_state": "NORMAL", "date_imported": "2026-01-14T14:23:41.747+01:00", "import_job_id": 225736, "subscribed_to": false, "collection_ids": [], "latest_version": true, "legacy_model_id": 116, "content_editable": true, "import_user_name": "bizAdmin", "date_last_updated": "2026-01-14T14:26:40.677+01:00", "metadata_model_id": "ECOMMERCE", "original_asset_id": "b5e69f3efdd81cd3a604708ed10c55a466d68b0e", "rendition_content": {"preview_content": {"id": "1b3fb8ad25ac04b3ab82c8cbd1653d097e73d19b", "url": "/otmmapi/v6/renditions/1b3fb8ad25ac04b3ab82c8cbd1653d097e73d19b", "name": "download-S.png", "width": 257, "height": 196, "mime_type": "image/png", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "PREVIEW", "content_path": "data\\\\repository\\\\screen\\\\vol0\\\\186\\\\download-S_1b3fb8ad25ac04b3ab82c8cbd1653d097e73d19b.png", "content_size": 127896, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "thumbnail_content": {"id": "378e6172d0245c0bb5e0a7cb599e4fa68a1a8b3e", "url": "/otmmapi/v6/renditions/378e6172d0245c0bb5e0a7cb599e4fa68a1a8b3e", "name": "download-T.png", "width": 257, "height": 196, "mime_type": "image/png", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "THUMBNAIL", "content_path": "data\\\\repository\\\\thumb\\\\vol0\\\\201\\\\download-T_378e6172d0245c0bb5e0a7cb599e4fa68a1a8b3e.png", "content_size": 127896, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_content_info": {"master_content": {"id": "e39e7d38b7abac1f67523cf4e933a2abc03ed232", "url": "/otmmapi/v6/renditions/e39e7d38b7abac1f67523cf4e933a2abc03ed232", "name": "download.jpg", "width": 257, "height": 196, "mime_type": "image/jpeg", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\227\\\\download_e39e7d38b7abac1f67523cf4e933a2abc03ed232.jpg", "content_size": 18093, "unit_of_size": "BYTES", "content_checksum": "170a85265b7055a13a6495204a06bb15", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_state_user_id": "1003", "master_content_info": {"id": "e39e7d38b7abac1f67523cf4e933a2abc03ed232", "url": "/otmmapi/v6/renditions/e39e7d38b7abac1f67523cf4e933a2abc03ed232", "name": "download.jpg", "width": 257, "height": 196, "mime_type": "image/jpeg", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\227\\\\download_e39e7d38b7abac1f67523cf4e933a2abc03ed232.jpg", "content_size": 18093, "unit_of_size": "BYTES", "content_checksum": "170a85265b7055a13a6495204a06bb15", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "delivery_service_url": "https://ppr.dam.ferrero.com/adaptivemedia/rendition?id=b5e69f3efdd81cd3a604708ed10c55a466d68b0e", "product_associations": false, "security_policy_list": [{"id": 1594, "name": "Security Policy_ Default Ecom Upload", "status": "NORMAL", "created_by": "1001", "create_date": "2022-05-24T16:22:28.927+02:00", "description": "Security Policy_ Default Ecom Upload", "ownership_type": "PUBLIC"}, {"id": 5467, "name": "Marketing Viewer", "status": "NORMAL", "created_by": "1003", "create_date": "2023-10-06T16:52:07.297+02:00", "description": "Marketing Viewer", "ownership_type": "PUBLIC"}], "thumbnail_content_id": "378e6172d0245c0bb5e0a7cb599e4fa68a1a8b3e", "content_state_user_id": "1003", "content_state_user_name": "OTMM BusinessAdmin", "asset_lock_state_user_id": "1003", "metadata_state_user_name": "OTMM BusinessAdmin", "access_control_descriptor": {"permissions_map": {"entry": [{"key": "text.securityPolicy.permission.Custom04Permission", "value": true}, {"key": "text.securityPolicy.permission.ContentEditPermission", "value": true}, {"key": "text.securityPolicy.permission.AssetViewPermission", "value": true}, {"key": "text.securityPolicy.permission.ProjectViewPermission", "value": true}, {"key": "text.securityPolicy.permission.MembershipEditPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom03Permission", "value": true}, {"key": "text.securityPolicy.permission.MetaDataEditPermission", "value": true}, {"key": "text.securityPolicy.permission.EditParentsPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom02Permission", "value": true}, {"key": "text.securityPolicy.permission.ExportPermission", "value": true}, {"key": "text.securityPolicy.permission.SummaryViewPermission", "value": true}, {"key": "text.securityPolicy.permission.PreviewViewPermission", "value": true}, {"key": "text.securityPolicy.permission.SubscribePermission", "value": true}, {"key": "text.securityPolicy.permission.DeleteAssetPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom01Permission", "value": true}]}}, "content_lock_state_user_id": "1003", "asset_state_last_update_date": "2026-01-14T14:26:40.677+01:00", "content_lock_state_user_name": "bizAdmin", "metadata_lock_state_user_name": "bizAdmin", "content_state_last_update_date": "2026-01-14T14:23:42.047+01:00", "inherited_metadata_collections": [{"container_id": "d4d9835db002b9992125246f2abb7117c99ab016", "container_name": "05. Final Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "d4d9835db002b9992125246f2abb7117c99ab016", "originator_id": "d4d9835db002b9992125246f2abb7117c99ab016", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "05. Final Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "container_name": "MASTER CAMP FER ROCHER 12.01.2", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "MASTER CAMP FER ROCHER 12.01.2"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000783"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "MASTER_CAMP_FER_ROC_CQ_LG_DE_PRE_0000783"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local comm on global brands"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Master Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Master Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2026/2027"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "B1"}, "display_value": "Master campaign ready for re-mastering", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ADDITIONALAPPROVER", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.LICENSING", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "d0ef653291e269a7d1ddf0ebfedd1c6ad70b1c59"}, "metadata_element": {"id": "FERRERO.FIELD.LICENSING", "name": "Campaign License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "LICENSING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}}]}, {"container_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "container_name": "01. DE - Rocher ", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "bb01cf85444107f22341d2b88421f0cbaade0bf9"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E006"}, "display_value": "GERMANY", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Local DE Editable Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Premium Chocolate Local DE Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "8f497ce53d23899c7c09aa5a7ca69c9f55c3a62d"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E64"}, "display_value": "GERMANY", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "ca70a6d55e4277ecbef2a01a593c614501cbcf74"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "3e9d669ab1047383d0416ba40af75744148c94c8"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0e241fc386dcd91baa31a409e297169fe4a352c2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "2e3e0f2be0e487b540d9b63cb8c0e9ed9c6b1bb6"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "359c98154f230a60acc6b4eb048e129411d7a778"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "b3698893fc223e8371f4e4c0d560d0536c724a09"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "e92f9f10c0c29dda8261218c2c72a0baa66472f2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "15dff42c3b196ba3ae5b3c2ea33f00e347e6f654"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Extended Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0ae044cd9dddf86cd9406c9edc3996b18c430be0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "name": "AMMC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AMMC", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LOCAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "7806fed6127b50c21f6b03e1f7b63f3dedc1e8d1"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "RMMC", "values": [{"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "4c8a2d6e178638bfacfeaf3f7f6f1000304693a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "name": "Product Asset Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Product Asset Approval Ferrero Rocher Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Asset Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCT_ASSET_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local comm on global brands"}, "display_value": "Local comm on global brands", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "5a1ae26558efdc03336c0df838dd9e7c2a51c687"}, "metadata_element": {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "name": "Market Unit", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market Unit", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETUNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "MARKET_UNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "091216b59cad7f1ea815164c26db27e350c54023", "container_name": "EU", "container_type_id": "GEOGRAPHYLOCAL", "container_type_name": "L4 - GEOGRAPHY LOCAL", "inherited_metadata_values": [{"id": "FERRERO.MARKET.FOLDER.GLOBAL", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "4c4d4bf36bf8b1ace55f990e78d6332a9cb20990"}, "metadata_element": {"id": "FERRERO.MARKET.FOLDER.GLOBAL", "name": "Global/Local (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "LOCAL"}, "display_value": "Local", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local (Marketing)", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "GLOBALLOCAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_AREA", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "3dc200c993ab8263952dc6da1498026f615f45dd"}, "metadata_element": {"id": "MARKETING_AREA", "name": "AREA", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E010"}, "display_value": "EUROPE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "AREA", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "AREA", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "AREA", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "dc7749c3e113ec9e0b9e9a3840ea55673ca5e49f"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "f2d658a3829c2ea158ae70a4b4e7928bcf88f8e2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "972d0258a82de85672bd84d8af68cdb67ad3d3ca"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "1212505ad3fe4c9d7458568f3d95aeb4c4e5c37e"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "9d1dfdef55ff7a3eb03552988ddf729c7a0f5107"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "54f006eeb366121a29ee98da33d437615dcd34e0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "1fd8802010e30d44cebb2f3eb090b12ac550f97d"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "8b6e1d8f7dc3c4671cfc11a2914d838ca3ee3f3b"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "be0dc9a87262ee7fd165237b531ba3b7aa93a260"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "2f99f0f0f9e43fb34df9222c8b73a86fb78e473e"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "container_name": "01. Rocher", "container_type_id": "GLOBALBRAND", "container_type_name": "L3 - BRAND", "inherited_metadata_values": [{"id": "FERRERO.TABULAR.NEW.BRAND", "tabular": true, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "9bb1c183135f5240f09132aef59c4ea48c762381"}, "metadata_element": {"id": "FERRERO.TABULAR.NEW.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF04"}, "display_value": "ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND (Marketing)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF04"}, "display_value": "ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "BRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TABULAR_BRAND", "column_name": "BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.NEW.BRAND", "parent_table_name": "BRAND (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "tabular": true, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "a37b13c02cba799378211e17b73234a0d836f9b6"}, "metadata_element": {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "CQ"}, "display_value": "FERRERO ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND(HARMONIZED)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "CQ"}, "display_value": "FERRERO ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.HARMONIZEDBRAND", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_HARMONIZEDBRAND", "column_name": "HARMONIZEDBRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.HARMONIZEDBRAND", "parent_table_name": "BRAND(HARMONIZED)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "AGENCY.COLLABORATION", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "183d6e0957a9940f9b18ef44f46d957802b63397"}, "metadata_element": {"id": "AGENCY.COLLABORATION", "name": "Agency collaboration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency collaboration", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "AGENCY_COLLABORATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "AGENCY.SHARING", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "d0e2b725ddfdc452cc3ba750bbe8ec059c6b01ba"}, "metadata_element": {"id": "AGENCY.SHARING", "name": "Agency sharing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency sharing", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "AGENCY_SHARING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "CONTENT.SCALING.AGENCYNAME", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "f9dfa695cc5ef8cd3fafada4e44cfdaa1522d58a"}, "metadata_element": {"id": "CONTENT.SCALING.AGENCYNAME", "name": "Content Scaling agency name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Scaling agency name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENTSCALING_AGENCYNAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "container_name": "01. Ferrero Rocher", "container_type_id": "GLOBALSUBCATEGORY", "container_type_name": "L2 - SUBCATEGORY", "inherited_metadata_values": [{"id": "MARKETING_SUBCATEGORY", "tabular": false, "value_id": {"uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "originator_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "inherited_field_id": "3000ad591e09b5c75f85fc2ccbb9ebeb31b3ab78"}, "metadata_element": {"id": "MARKETING_SUBCATEGORY", "name": "SUBCATEGORY", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Mart-Ferrero-Rocher"}, "display_value": "Ferrero Rocher", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "SUBCATEGORY", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "SUBCATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "SUBCATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "tabular": true, "value_id": {"uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "originator_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "inherited_field_id": "2c751ce760d88c0e271925ea5149348106944bfa"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Subcategory Owner", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_SUBCATEGORY_OWNER_TM", "column_name": "SUBCATEGORY_OWNER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "parent_table_name": "Subcategory Owner", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "container_name": "03. Premium Chocolate", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "originator_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E06"}, "display_value": "PREMIUM CHOCOLATE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "originator_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final Approver BPS ", "values": [{"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "container_name": "00. Master Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "originator_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00. Master Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "container_name": "LOCADAPLOCCOMM - FER ROCHER 4", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "LOCADAPLOCCOMM - FER ROCHER 4"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000794"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "LOCADAPLOCCOMM_-__CQ_LAL_MLT_PRE_0000794"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local adaptation of local comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Master Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000783"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Master Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "DK"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "DK"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "SE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "FI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "NO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "IS"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "GL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2025/2026"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2797"}, "display_value": "Owner, Asset (AssetownerLoG, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2797"}, "display_value": "Owner, Asset (AssetownerLoG, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2797"}, "display_value": "Owner, Asset (AssetownerLoG, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2797"}, "display_value": "Owner, Asset (AssetownerLoG, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "A2"}, "display_value": "Selected Master Assets sent to Agency", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ADDITIONALAPPROVER", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.LICENSING", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "d0ef653291e269a7d1ddf0ebfedd1c6ad70b1c59"}, "metadata_element": {"id": "FERRERO.FIELD.LICENSING", "name": "Campaign License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "LICENSING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}}]}, {"container_id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "container_name": "25-26", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "originator_id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "25-26"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "container_name": "02. Campaign", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "originator_id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "02. Campaign"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "f31042cfc487f066486c46527c076b8ee6618ceb", "container_name": "01. Standard", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "f31042cfc487f066486c46527c076b8ee6618ceb", "originator_id": "f31042cfc487f066486c46527c076b8ee6618ceb", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "01. Standard"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "container_name": "02. Sweden", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "originator_id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "02. Sweden"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "container_name": "SCANDINAVIA", "container_type_id": "GLOBALMARKETUNIT", "container_type_name": "L6 - MARKET UNIT", "inherited_metadata_values": [{"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "24a6615bcce9adc5a098c76c29b8e8baba61a9a3"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E22"}, "display_value": "SCANDINAVIA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "13063087b81ea172db42e69ed8e8fa013cd5bfe0"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Local SCANDINAVIA Editable Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "bf49ba2a40d0d0dccee4d5de7381659b106dd89a"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Premium Chocolate Local SCANDINAVIA Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "8e4d311466783d8215a38b08bee3cb2b3bfcf40f"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "9e88b5726590ab30642999a28a301e3fbcebc762"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "name": "Published Security Policy - Restricted Visibility", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Security Policy - Restricted Visibility", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_VISIBILITY_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "3c0070e420882e3e18f6097811cb60a67239003b"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local SCANDINAVIA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "7f3c1933b61e900457ea6e2aab750303882873d4"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "b0c960759e48c0fcdcb650417179a614da95e866"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Local SCANDINAVIA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "6f603fcc63415e266dc35cf2314d31357a2966bf"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "3c12728b06ecfafeeb74482ea7b7296b180765f9"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "dc9b8ffa0591a1b2956c07fa5dc10ff477c84f4e"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "495fa4f08769a021cfa907dfb7a903fade9bd19a"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "e3b647e172a89e1e7cbdd2964faff1bca8dcf520"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "6870cca056b54cd400a9fbd4fe75513e69cedcdd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "RMMC", "values": [{"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "container_name": "01. MC - Rocher", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "bb01cf85444107f22341d2b88421f0cbaade0bf9"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E023"}, "display_value": "MULTI COUNTRY EUROPE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "8f497ce53d23899c7c09aa5a7ca69c9f55c3a62d"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E22"}, "display_value": "SCANDINAVIA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "ca70a6d55e4277ecbef2a01a593c614501cbcf74"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "3e9d669ab1047383d0416ba40af75744148c94c8"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "0e241fc386dcd91baa31a409e297169fe4a352c2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "2e3e0f2be0e487b540d9b63cb8c0e9ed9c6b1bb6"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "359c98154f230a60acc6b4eb048e129411d7a778"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "b3698893fc223e8371f4e4c0d560d0536c724a09"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "e92f9f10c0c29dda8261218c2c72a0baa66472f2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "15dff42c3b196ba3ae5b3c2ea33f00e347e6f654"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "0ae044cd9dddf86cd9406c9edc3996b18c430be0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "name": "AMMC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AMMC", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LOCAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "7806fed6127b50c21f6b03e1f7b63f3dedc1e8d1"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "RMMC", "values": [{"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "4c8a2d6e178638bfacfeaf3f7f6f1000304693a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "name": "Product Asset Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Asset Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCT_ASSET_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of local comm"}, "display_value": "Local adaptation of local comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of local comm"}, "display_value": "Local adaptation of local comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "5a1ae26558efdc03336c0df838dd9e7c2a51c687"}, "metadata_element": {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "name": "Market Unit", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market Unit", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETUNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "MARKET_UNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "container_name": "Read Only", "container_type_id": "L3 - Agency Structure", "container_type_name": "L3 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "55530f721f18c847e35d7c828edf53461b5014b0"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "330bb6f68316aab5c45f9fe34e047cce573c67cc"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "name": "Agency Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "AGENCY_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "e30e90d694f9935d4c15c4c78891beed8853a272"}, "metadata_element": {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "name": "Published Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "PUBLISHED_ASSET_SP_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "23b155c32d5c6142914b41458234c100812bbec8", "container_name": "Oliver", "container_type_id": "L2 - Agency Structure", "container_type_name": "L2 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.AGENCY", "tabular": false, "value_id": {"uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "originator_id": "23b155c32d5c6142914b41458234c100812bbec8", "inherited_field_id": "48fcbc397986aca5bb8722a95197dd0a46f19b4e"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_AGENCY", "column_name": "AGENCY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "container_name": "Z - Exchange", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "YY"}, "display_value": "AGENCIES", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Final Approver BPS ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}], "asset_lock_state_last_update_date": "2026-01-14T14:27:01.9+01:00", "content_lock_state_last_update_date": "2026-01-14T14:23:42.103+01:00"}, "language_code": null, "language_name": null, "subject_title": null, "file_extension": ".jpg", "asset_type_name": null, "file_size_bytes": null, "duration_seconds": null, "upload_directory": "d4d9835db002b9992125246f2abb7117c99ab016", "local_campaign_id": null, "original_filename": "download", "global_master_folder_id": null, "global_master_campaign_id": null} 2026-01-16 20:54:45.211417 \N 20 M7oXC5 master_asset_created {"id": 20, "tags": null, "status": "active", "width_px": null, "height_px": null, "mime_type": "image/jpeg", "asset_type": null, "brand_code": null, "brand_name": null, "categories": null, "created_at": "2026-01-16T20:54:48.714499", "deleted_at": null, "is_deleted": false, "updated_at": "2026-01-16T20:54:48.714499", "description": "Box File ID: 2105216970909\\nBox URL: https://app.box.com/file/2105216970909\\nDAM Asset ID: 85a99b184653d78906eccc8934a67e5ed4bcd9e9", "ingested_at": "2026-01-16T20:54:48.714499", "ingested_by": null, "opentext_id": "85a99b184653d78906eccc8934a67e5ed4bcd9e9", "tracking_id": "M7oXC5", "aspect_ratio": null, "country_code": null, "country_name": null, "full_metadata": {"name": "images.jpg", "links": {"links": [], "source_id": "85a99b184653d78906eccc8934a67e5ed4bcd9e9"}, "locked": false, "deleted": false, "expired": false, "version": 1, "asset_id": "85a99b184653d78906eccc8934a67e5ed4bcd9e9", "metadata": {"id": "ECOMMERCE", "name": "Marketing Asset", "type": "com.artesia.metadata.MetadataModel", "legacy_id": 116, "metadata_element_list": [{"id": "FERRERO.CATEGORY.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200054, "metadata_element_list": [{"id": "FERRERO.FIELD.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Status", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.CONTENT_STATUS", "edit_type": "COMBO_NOTNULL", "facetable": false, "searchable": true, "table_name": "FERRERO_CONTENT_STATUS_MD", "column_name": "CONTENT_STATUS", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9215, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRER.CATEGORY.ASSET_INFO", "name": "Asset Info", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200022, "metadata_element_list": [{"id": "FERRERO.FIELD.MKTG.ASSET TYPE", "name": "Asset Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.ASSETTYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.FISCAL YEAR", "name": "Release Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2026/2027"}, "display_value": "2026/2027", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Release Fiscal Year", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_DOMAIN_FISCAL_YEAR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "FISCAL__YEAR", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "name": "Main Languages", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1210, "metadata_element_list": [{"id": "MAIN_LANGUAGES", "name": "MAIN LANGUAGES", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "MAIN LANGUAGES", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MAIN LAGUAGES_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MAIN_LANGUAGE_TABLE", "column_name": "MAIN_LANGUAGE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "parent_table_name": "Main Languages", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.ASSET DESCRIPTION", "name": "Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Description", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "DESCR", "data_length": 249, "description": "Descriptive information", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.FLAVOUR", "name": "Flavour", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Flavour", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.FLAVOUR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FLAVOUR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.SIZE", "name": "Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Size", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.SIZE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SIZE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1241, "metadata_element_list": [{"id": "FERRERO.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Compliance", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ASSETCOMPLIANCE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_COMPLIANCE", "column_name": "ASSET_COMPLIANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "parent_table_name": "Asset Compliance", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.TAG DETAILS", "name": "Tag Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 118, "metadata_element_list": [{"id": "ARTESIA.FIELD.TAG", "name": "Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "food", "field_value": {"type": "string", "value": "food"}, "display_value": "food", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Tag", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "food", "field_value": {"type": "string", "value": "food"}, "display_value": "food", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "slot machine", "field_value": {"type": "string", "value": "slot machine"}, "display_value": "slot machine", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.TAGS", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "OTMM_TAGS", "column_name": "TAG", "data_length": 80, "description": "Tag", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG CONFIDENCE", "name": "Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 83.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Confidence", "values": [{"value": {"type": "decimal", "value": 83.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 72.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Confidence", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG TYPE", "name": "Tag Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Tag Type", "values": [{"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "TAG_TYPE", "data_length": 10, "description": "Tag Type", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED BY", "name": "Associated By", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Associated By", "values": [{"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_BY", "data_length": 10, "description": "Associated By", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED DATE", "name": "Associated Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-14T14:24:31.323+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Associated Date", "values": [{"value": {"type": "dateTime", "value": "2026-01-14T14:24:31.323+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2026-01-14T14:24:31.323+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_DATE", "data_length": 10, "description": "Associated Date", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.STATE", "name": "Global/Local", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "GLOBAL"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO_NOTNULL", "facetable": true, "searchable": true, "table_name": "FERRERO_IC_ASSET_DETAILS", "column_name": "ASSET_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.ASPECT RATIO", "name": "Aspect Ratio (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio (Marketing)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASPECT_RATIO", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASPECT_RATIO", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "name": "Tag (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1222, "metadata_element_list": [{"id": "MARKETING_TAG", "name": "Marketing Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Marketing Tag", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.DOMAIN.TAG", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TAG_MARKET", "column_name": "TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "parent_table_name": "Tag (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.TAGS", "name": "Auto-Generated Tags", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Auto-Generated Tags", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "AUTO_GENERATED_TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CERTIFIER", "name": "Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approver", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.MARKETING.FIELD.APPROVAL DATE", "name": "Approval__Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approval__Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.LEGAL APPROVAL DATE", "name": "Legal Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CERTIFIER", "name": "IA&CC Certifier", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Certifier", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CC APPROVAL DATE", "name": "IA&CC Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "name": "Extended Approval", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1230, "metadata_element_list": [{"id": "FERRERO.FIELD.EXTENDED.APPROVAL", "name": "Extended Approval required by:", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended Approval required by:", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COMMENTS", "name": "Comment", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comment", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "COMMENTS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.DATE", "name": "Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USERS", "name": "User ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "User ID", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "USERS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXTENDED.JOBID", "name": "Extended JobID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended JobID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.MIGRATION.INDEX", "name": "Migration Index", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Migration Index", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MIGRATION.INDEX", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MIGRATION_INDEX", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "FERRERO_MARKET_MARKETING_CREATOR", "name": "Marketing Creator", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Marketing Creator", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.CREATOR", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MARKETING_CREATOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "ARTESIA.FIELD.IS LATEST VERSION", "name": "Is Latest Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Y"}, "display_value": "Yes", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Is Latest Version", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.YES_NO", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "IS_LATEST_VERSION", "data_length": 1, "description": "Is this the latest version? (Y/N)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET VERSION", "name": "Asset Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 1}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Version", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "INTEGER", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "VERSION", "data_length": 12, "description": "Version number of asset", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET_ID", "name": "Asset ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "85a99b184653d78906eccc8934a67e5ed4bcd9e9"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset ID", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "LOGICAL_UOI_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.ECOMMERCE STATUS", "name": "Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "PUBLISHED"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Status", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "ASSET_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CREATOR", "name": "Uploaded by", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Uploaded by", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_USER_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.FIELD.CREATION DATE", "name": "Upload Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-14T14:23:41.743+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Upload Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_DT", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.ASSET NAME", "name": "Asset Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "images.jpg"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Name", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "description": "Original name of master object", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.CONTENT TYPE", "name": "Content Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "BITMAP"}, "display_value": "Image", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Type", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.CONTENT_TYPES", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "CONTENT_TYPE", "data_length": 8, "description": "Content Type", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.MIME TYPE", "name": "File Extension", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "image/jpeg"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Extension", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_MIME_TYPE", "data_length": 80, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.FILE.SIZE", "name": "File Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "long", "value": 11710}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Size", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "LONG", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_SIZE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP RESOLUTION", "name": "Bitmap Resolution", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 72}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Resolution", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_RESOLUTION", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP WIDTH", "name": "Bitmap Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 225}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Width", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_WIDTH", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP HEIGHT", "name": "Bitmap Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 225}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Height", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_HEIGHT", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "name": "Approval Metadata", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1249, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.DEPARTMENT", "name": "Department", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Department", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "DEPARTMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.CERTIFIER", "name": "Certifier", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Certifier", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL DATE", "name": "Approval Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Approval Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "APPROVAL_DATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.COMMENT", "name": "Comments", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comments", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "COMMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.TYPE OF APPROVAL", "name": "Type of Approval", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Approval", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "TYPE_OF_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL STATUS", "name": "Approval Status", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Approval Status", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "APPROVAL_STATUS", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.SUB JOBID", "name": "Sub Job Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sub Job Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.VIDEO.BIT_RATE", "name": "Bitrate", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitrate", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "BIT_RATE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.EMBEDDED.FIELD.DURATION", "name": "Duration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Duration", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "DURATION_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.ASPECT RATIO", "name": "Aspect Ratio", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "ASPECT_RATIO", "data_length": 30, "displayable": false, "instructions": "ASPECT_RATIO", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME HEIGHT", "name": "Frame Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Height", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_HEIGHT", "data_length": 12, "displayable": true, "instructions": "FRAME_HEIGHT", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME WIDTH", "name": "Frame Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Width", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_WIDTH", "data_length": 12, "displayable": true, "instructions": "FRAME_WIDTH", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.ASPECT.RATIO.POC", "name": "Aspect Ratio(POC)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "1:1"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio(POC)", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASPECT_RATIO_TABLE", "column_name": "ASPECT_RATIO", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "PRODUCT.DETAILS", "name": "Product Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200029, "metadata_element_list": [{"id": "FERRERO.TABLE.EANCODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1208, "metadata_element_list": [{"id": "EAN_CODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "EAN CODE/ 77 CODE", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "EAN.CODE", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "EAN_CODE", "column_name": "EAN_CODE_DESCRIPTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "COUNTRY", "name": "COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "EAN_CODE", "column_name": "COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKETING.ADVANCE.PRODUCT.LINK", "name": "Asset-to-product relation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset-to-product relation", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_MARKETING_ADVANCE_PRODUCT_LINK", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ADVANCE_PRODUCT_LINK", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 10182, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.SUB BRAND", "name": "Sub-Brands", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Sub-Brands", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.SUBBRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "SUB_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT WEIGHT", "name": "Product Weight", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Weight", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_WEIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.CONSUMER UNIT PACKAGING", "name": "Consumer Unit Packaging", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Consumer Unit Packaging", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PACK", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "CONSUMER_UNIT_PACKAGING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.4 DIGIT CODE", "name": "4 Digit Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "4 Digit Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "DIGITCODE", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERREO.ECOM.RETAILER_SPECIFIC_FIELD", "name": "Retailer Specific", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Retailer Specific", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "RETAILER_SPECIFIC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "cascading_group_id": "FERRERO.RETAILER.SPECIFIC", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY START PERIOD", "name": "Asset validity start period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity start period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_STARTING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY END PERIOD", "name": "Asset validity end period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity end period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_ENDING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.ASSET.NAMING.CONVENTION", "name": "Does asset need GS1 naming convention", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Does asset need GS1 naming convention", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASSETNAMINGCONVENTION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_NAMING_CONVENTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9515, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT VIEW", "name": "Product View", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product View", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT VIEW", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_VIEW", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT ANGLE", "name": "Product Angle", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Angle", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT.ANGLE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_ANGLE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT STATE", "name": "Product State", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product State", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT STATE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PROMOTION ID", "name": "Promo ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Promo ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROMO_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.BUSINESS.ASSET TYPE", "name": "Asset Type (eDAM)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Angled view", "field_value": {"type": "string", "value": "angledview"}, "display_value": "ANGLED VIEW", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Type (eDAM)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "OTMM.DOMAIN.OTMM_ASSETTYPE_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_BUSINESS_INFO", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7244, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200048, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.AGENCY NAME", "name": "Agency Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "0000000001"}, "display_value": "ATest", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Agency Name", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.AGENCY_NAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AGENCY_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7336, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.CREATIX", "name": "CreativeX", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200059, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.CREATIVEX", "name": "Confidence", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1245, "metadata_element_list": [{"id": "FERRERO.TAB.FIELD.CREATIVEX", "name": "Platform > Rating (%)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Platform > Rating (%)", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_CREATIVEX", "column_name": "CREATIVEX_NEW", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CREATIVEX", "parent_table_name": "Confidence", "cascading_group_id": "FERRERO.CREATIVEX.CHAR", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.CREATIVEX LINK", "name": "CreativeX Hyperlink", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "CreativeX Hyperlink", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_CREATIVEX", "column_name": "CREATIVE_LINK", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.IP_RIGHTS", "name": "IP Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200046, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.IPRIGHT", "name": "IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IP Rights", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.IPRIGHTS", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IP_RIGHTS", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.BUYOUT", "name": "Touchpoint Scope", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Touchpoint Scope", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.TOTAL_BUYOUT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TOTAL_BUYOUT", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.FERRERO PROPERTY", "name": "Ferrero Property", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Ferrero Property", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.FERRERO_PROPERTY", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FERRERO_PROPERTY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200035, "metadata_element_list": [{"id": "FERRERO.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1209, "metadata_element_list": [{"id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "name": "IP Coverage, Area, Region & Market Unit", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Coverage, Area, Region & Market Unit", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "IPCOVERAGE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "cascading_group_id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHT TYPE", "name": "Copyright Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHT_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.MEDIATYPE", "name": "Media Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Media Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MEDIA_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "MEDIA_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE FROM", "name": "Expiration of Usage - From", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - From", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_FROM", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE TO", "name": "Expiration of Usage - To", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - To", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_TO", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO._DURATION", "name": "IP Duration", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Duration", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "ECOM_DURATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHTTYPE DETAILS", "name": "Copyright Type Details", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type Details", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHTTYPE_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 6, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.MARKET.VID_STAT_RIGHT", "name": "Video & Static Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200047, "metadata_element_list": [{"id": "FERRERO.MARKET.VID_N_STAT", "name": "Video and Static Right", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video and Static Right", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VID_AND_STAT_RIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.VID_STAT_TYPE", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1221, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.TYPE_VID", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Video & Static Right", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TYPE_VID_STAT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_MARKET_TYPE_VID_STAT", "column_name": "TYPE_OF_VIDEO_STATIC_RIGHT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.VID_STAT_TYPE", "parent_table_name": "Type of Video & Static Right", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKET.PROD_COMPANY", "name": "Production House", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Production House", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.PRODUCT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200050, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.LICENSIN", "name": "Licensing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Licensing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSING", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "cascading_group_id": "FERRERO.MARKET.CG.LICENSE", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.SPOT_DETAILS", "name": "Spot Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200049, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.SPOT_VERSION", "name": "Spot Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Version", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_VERSION", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_VERSION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.SPOT_TYPE", "name": "Spot Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_TYPE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.DIRECTOR_NAME", "name": "Director Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Director Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "DIRECTOR_NAME", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VIDEO_POST_PROD_COMPANY", "name": "Video Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VID_POST_PROD_CONTACT", "name": "Video Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_COMPANY", "name": "Audio Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_CONTACT", "name": "Audio Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.BROADCASTER.CODE", "name": "Broadcaster Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Broadcaster Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BROADCASTER_CODE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.TECHNICAL_VALIDATION", "name": "Technical Validation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Technical Validation", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TECHNICAL_VALIDATION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS", "name": "Media Analysis", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1002, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "name": "Categories", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 105, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY NAME", "name": "Category Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "others_"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Category Name", "values": [{"value": {"type": "string", "value": "others_"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "outdoor_"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "text_menu"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "NAME", "data_length": 100, "description": "Category Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY CONFIDENCE", "name": "Category Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 3.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Category Confidence", "values": [{"value": {"type": "decimal", "value": 3.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 0.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 26.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "CONFIDENCE", "data_length": 10, "description": "Category Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES COUNT", "name": "Faces Count", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Faces Count", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACECOUNT", "column_name": "COUNT", "data_length": 10, "description": "Faces Count", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "name": "Face Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 106, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME", "name": "Recognized Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME", "data_length": 2000, "description": "Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME CONFIDENCE", "name": "Recognized Name Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME_CONFIDENCE", "data_length": 10, "description": "Name Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE", "name": "Person Age", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE", "data_length": 10, "description": "Person Age", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE CONFIDENCE", "name": "Person Age Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Person Age Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_CONFIDENCE", "data_length": 10, "description": "Person Age Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER", "name": "Gender", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Gender", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.GENDER", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER", "data_length": 40, "description": "Gender", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER CONFIDENCE", "name": "Gender Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Gender Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER_CONFIDENCE", "data_length": 10, "description": "Gender Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.FACE COORDS", "name": "Face Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "FACE_COORDS", "data_length": 200, "description": "Face Coordinates like postion, height,width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE GROUP", "name": "Person Age Group", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age Group", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.AGE GROUP", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_GROUP", "data_length": 10, "description": "Person Age Group", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "name": "Safe Content", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 107, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONTENT TYPE", "name": "Safe Content Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Safe Content Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENTS", "data_length": 20, "description": "Safe Content Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONFIDENCE", "name": "Content Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Content Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENT_CONFIDENCE", "data_length": 10, "description": "Safe Content Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "name": "Colors", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 108, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.NAME", "name": "Color", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Brown"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Color", "values": [{"value": {"type": "string", "value": "Brown"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "Black"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "NAME", "data_length": 25, "description": "COLOR", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.PROPORTION", "name": "Color Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Color Confidence", "values": [{"is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "PROPORTION", "data_length": 10, "description": "Proportion", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.FOREGROUND", "name": "Foreground Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Brown"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Foreground Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "FOREGROUND", "data_length": 25, "description": "Foreground Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.BACKGROUND", "name": "Background Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Black"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Background Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "BACKGROUND", "data_length": 25, "description": "Background Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.ISBW", "name": "Is Black and White", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "false"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Is Black and White", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "ISBW", "data_length": 10, "description": "Is Black and White", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "name": "Captions", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 109, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION TEXT", "name": "Caption Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Caption Text", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "TEXT", "data_length": 2000, "description": "Caption Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION CONFIDENCE", "name": "Caption Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Caption Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "CAPTION_CONFIDENCE", "data_length": 10, "description": "Caption Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "name": "Image Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 110, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.IMAGE TYPE", "name": "Analysis Image Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Analysis Image Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_IMAGE_TYPE", "column_name": "TYPE", "data_length": 100, "description": "Image Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "parent_table_name": "Image Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.DATE", "name": "Date: Media Analysis", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-14T14:24:31+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date: Media Analysis", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MEDIA_ANALYSIS_DATE", "data_length": 25, "description": "Date Media Analysis was done on the asset.", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR LANGUAGE", "name": "Image Text Language", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "unk"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Image Text Language", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "LANGUAGE", "data_length": 10, "description": "OCR data language", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR TEXT", "name": "Text on Image", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Text on Image", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "TEXT", "data_length": 4000, "description": "OCR Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "name": "Embedded Brand Info", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 119, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.NAME", "name": "Embedded Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Embedded Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Embedded Brand Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.CONFIDENCE", "name": "Embedded Brand Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Embedded Brand Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Embedded Brand Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.COORDINATES", "name": "Embedded Brand Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Embedded Brand Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "COORDINATES", "data_length": 200, "description": "Embedded Brand Coordinates like position, height, width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "HYBRIS.PRODUCT.INFO", "name": "PIM Item Reference", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200027, "metadata_element_list": [{"id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "name": "Hybris Item Reference", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1206, "metadata_element_list": [{"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ID", "name": "Hybris Item ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ID", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT TAG NAME", "name": "Hybris Assignment Label", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Assignment Label", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_TAG_NAME", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ATTRIBUTE NAME", "name": "Hybris Attribute Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Attribute Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ATTRIBUTE_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT CATALOG NAME", "name": "Hybris Catalog Mnemonic", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Catalog Mnemonic", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_CATALOG_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT PK", "name": "Hybris Item PK", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item PK", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_PK", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.SYSTEM ID", "name": "Hybris System ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris System ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "SYSTEM_ID", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.ASSIGNED", "name": "Assigned", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Assigned", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "ASSIGNED", "column_name": "ASSIGNED", "data_length": 38, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PIM TYPE", "name": "PIM Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "PIM Type", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_PIM_TYPE", "column_name": "PIM_TYPE", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS VIDEO", "name": "Media Analysis Video", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1003, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "name": "Labels", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 113, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.ID", "name": "Label Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "ID", "data_length": 40, "description": "Label Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.NAME", "name": "Label Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "NAME", "data_length": 40, "description": "Label Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.APPEARANCES", "name": "Label Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "APPEARANCES", "data_length": 0, "description": "Label Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "name": "Sentiments", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 114, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.ID", "name": "Sentiment Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "ID", "data_length": 40, "description": "Sentiment Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.NAME", "name": "Sentiment Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "NAME", "data_length": 40, "description": "Sentiment Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.APPEARANCES", "name": "Sentiment Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "APPEARANCES", "data_length": 0, "description": "Sentiment Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.SEEN.DURATION.RATIO", "name": "Sentiment Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Sentiment Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "name": "Keywords", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 115, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.ID", "name": "Keyword Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "ID", "data_length": 40, "description": "Keyword Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.NAME", "name": "Keyword Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "NAME", "data_length": 40, "description": "Keyword Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.APPEARANCES", "name": "Keyword Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Keyword Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "name": "Faces", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 111, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.ID", "name": "Face Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "ID", "data_length": 40, "description": "Face Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.NAME", "name": "Face Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "NAME", "data_length": 40, "description": "Face Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.TITLE", "name": "Face Title", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Title", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "TITLE", "data_length": 249, "description": "Face Title", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.DESCRIPTION", "name": "Face Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Face Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.APPEARANCES", "name": "Face Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "APPEARANCES", "data_length": 0, "description": "Face Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SPEAKER.FACE.ID", "name": "Video Speaker Object Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Speaker Object Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "THUMBNAIL_OBJECT_ID", "data_length": 40, "description": "Video Speaker Object Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.SEEN.DURATION.RATIO", "name": "Face Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "SEEN_DURATION_RATIO", "data_length": 20, "description": "Face Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "name": "Brands", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 112, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.ID", "name": "Video Brand Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "ID", "data_length": 40, "description": "Brand Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.NAME", "name": "Video Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Brand Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.DESCRIPTION", "name": "Video Brand Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Brand Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.WIKIURL", "name": "Video Brand Wiki URL", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Wiki URL", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "WIKIURL", "data_length": 200, "description": "Brand Wiki URL", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.APPEARANCES", "name": "Video Brand Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Brand Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.SEEN.DURATION.RATIO", "name": "Video Brand Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Brand Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "name": "Speeches", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 116, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.ID", "name": "SpeechText Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "SpeechText Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "ID", "data_length": 40, "description": "SpeechText Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXT", "name": "Speech Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Text", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXT", "data_length": 1000, "description": "Speech Text", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXTTYPE", "name": "Speech Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXTTYPE", "data_length": 40, "description": "Speech Type", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.START TIME", "name": "Speech Start Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Start Time", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "START_TIME", "data_length": 40, "description": "Speech Start Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.END TIME", "name": "Speech End Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech End Time", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "END_TIME", "data_length": 40, "description": "Speech End Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "name": "Speakers", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 122, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.ID", "name": "Speaker Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "ID", "data_length": 40, "description": "Speaker Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.NAME", "name": "Speaker Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "NAME", "data_length": 100, "description": "Speaker Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.APPEARANCES", "name": "Speaker Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "APPEARANCES", "data_length": 0, "description": "Speaker Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.FIELDGROUP.LOCALASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200057, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1239, "metadata_element_list": [{"id": "FERRERO.FIELD.COUNTRY", "name": "LOCAL COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "LOCAL COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USER", "name": "USER", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "USER", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_USER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.ASSOCIATION", "name": "TYPE OF ASSOCIATION", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "TYPE OF ASSOCIATION", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_ASSOCIATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.VALUE", "name": "VALUE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "VALUE", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_VALUE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "CG.CATEGORY.FADEL ASSET INFORMATION", "name": "Rights Asset Information", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200064, "metadata_element_list": [{"id": "CG.FIELD.RIGHTS MANAGED", "name": "Fadel IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fadel IP Rights", "enabled": true, "options": "", "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_RIGHTS_MANAGED_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGED", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.NEEDS RIGHTS MANAGEMENT", "name": "Needs Rights Management", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "10", "field_value": {"type": "string", "value": "N"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Needs Rights Management", "enabled": true, "options": "", "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_NEEDS_RIGHTS_MANAGEMENT_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "NEEDS_RIGHTS_MANAGEMENT", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.RIGHTS MANAGEMENT DESCRIPTION", "name": "Rights Management Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Rights Management Description", "enabled": true, "options": "", "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGEMENT_DESCRIPTION", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.RIGHTS MANAGEMENT STATUS", "name": "Rights Management Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Rights Management Status", "enabled": true, "options": "", "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_RIGHTS_MANAGEMENT_STATUS_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGEMENT_STATUS", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.FORCE SYNC", "name": "Force Sync", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Force Sync", "enabled": true, "options": "", "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_FORCE_SYNC_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "FORCE_SYNC", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.LAST SYNC TIME", "name": "Date of last data sync", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date of last data sync", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "LAST_SYNC_TIME", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "CG.CATEGORY.FADEL RIGHTS INFORMATION", "name": "Rights Information", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200065, "metadata_element_list": [{"id": "CG.TABLE.RIGHTS", "name": "Rights", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1256, "metadata_element_list": [{"id": "CG.FIELD.RIGHT TERRITORIES", "name": "Territory", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Territory", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "TERRITORY", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT USES", "name": "Use", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Use", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "USAGE", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT IN DATE", "name": "In Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "In Date", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "IN_DATE", "data_length": 10, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT OUT DATE", "name": "Out Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Out Date", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "OUT_DATE", "data_length": 10, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "saved_values_behavior_mode": 0}]}]}, {"id": "CG.CATEGORY.FADEL AGREEMENTS AND PARTIES", "name": "Agreements and Parties", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200067, "metadata_element_list": [{"id": "CG.TABLE.PARTIES.AGREEMENTS VW", "name": "Customized Table Parties and Agreements", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1258, "metadata_element_list": [{"id": "CG.FIELD.AGREEMENT NUMBER VW", "name": "Agreement Number ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Number ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_NUMBER", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT DESCRIPTION VW", "name": "Agreement Description ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Description ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_DESCRIPTION", "data_length": 2000, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT START DATE VW", "name": "Agreement Start Date ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Start Date ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_START_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT END DATE VW", "name": "Agreement End Date ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement End Date ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_END_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY NAME VW", "name": "Party Name ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Name ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_NAME", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY ROLE VW", "name": "Party Role ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Role ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_ROLE", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY EMAIL ADDRESS VW", "name": "Party Email Address ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Email Address ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_EMAIL_ADDRESS", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY PHONE NUMBER VW", "name": "Party Phone Number ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Phone Number ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_PHONE_NUMBER", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PRIMARY PARTY CONTACT VW", "name": "Primary Party Contact ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Primary Party Contact ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PRIMARY_PARTY_CONTACT", "data_length": 200, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 8, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}], "has_multilingual_fields": false}, "mime_type": "image/jpeg", "path_list": [{"parents": [{"id": "d4d9835db002b9992125246f2abb7117c99ab016", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "d4d9835db002b9992125246f2abb7117c99ab016", "sequence_number": 0}, {"id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "name": "MASTER CAMP FER ROCHER 12.01.2", "container_state": "NORMAL", "original_uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "sequence_number": 0}, {"id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "name": "01. DE - Rocher ", "container_state": "NORMAL", "original_uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "sequence_number": 0}, {"id": "091216b59cad7f1ea815164c26db27e350c54023", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "sequence_number": 0}, {"id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "name": "01. Rocher", "container_state": "NORMAL", "original_uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "sequence_number": 0}, {"id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "name": "01. Ferrero Rocher", "container_state": "NORMAL", "original_uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "sequence_number": 0}, {"id": "93b0968611de11160ed068afeb9930b9965bd5ff", "name": "03. Premium Chocolate", "container_state": "NORMAL", "original_uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "sequence_number": 0}], "complete": true, "sequence_number": 1, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "sequence_number": 0}, {"id": "4b05a895330aa2fb6046f59731aba5dd93858431", "name": "LOCADAPLOCCOMM - FER ROCHER 4", "container_state": "NORMAL", "original_uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "sequence_number": 0}, {"id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "name": "25-26", "container_state": "NORMAL", "original_uoi_id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "sequence_number": 0}, {"id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "name": "02. Campaign", "container_state": "NORMAL", "original_uoi_id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "sequence_number": 0}, {"id": "f31042cfc487f066486c46527c076b8ee6618ceb", "name": "01. Standard", "container_state": "NORMAL", "original_uoi_id": "f31042cfc487f066486c46527c076b8ee6618ceb", "sequence_number": 0}, {"id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "name": "02. Sweden", "container_state": "NORMAL", "original_uoi_id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "sequence_number": 0}, {"id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "name": "SCANDINAVIA", "container_state": "NORMAL", "original_uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "sequence_number": 0}, {"id": "f2649309eb916c5c25bb309e3db061042c3eecca", "name": "01. MC - Rocher", "container_state": "NORMAL", "original_uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "sequence_number": 0}, {"id": "091216b59cad7f1ea815164c26db27e350c54023", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "sequence_number": 0}, {"id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "name": "01. Rocher", "container_state": "NORMAL", "original_uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "sequence_number": 0}, {"id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "name": "01. Ferrero Rocher", "container_state": "NORMAL", "original_uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "sequence_number": 0}, {"id": "93b0968611de11160ed068afeb9930b9965bd5ff", "name": "03. Premium Chocolate", "container_state": "NORMAL", "original_uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "sequence_number": 0}], "complete": true, "sequence_number": 1, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "d4d9835db002b9992125246f2abb7117c99ab016", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "d4d9835db002b9992125246f2abb7117c99ab016", "sequence_number": 0}, {"id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "name": "MASTER CAMP FER ROCHER 12.01.2", "container_state": "NORMAL", "original_uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "sequence_number": 0}, {"id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "name": "01. DE - Rocher ", "container_state": "NORMAL", "original_uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "sequence_number": 0}, {"id": "bfbc248a12a4bf0382406620f0d9ec41ff42e35e", "name": "01. Ferrero Rocher", "container_state": "NORMAL", "original_uoi_id": "bfbc248a12a4bf0382406620f0d9ec41ff42e35e", "sequence_number": 0}, {"id": "3d7debea6815ae46c9598191b1c645007666292a", "name": "03 . Premium Chocolate", "container_state": "NORMAL", "original_uoi_id": "3d7debea6815ae46c9598191b1c645007666292a", "sequence_number": 0}, {"id": "c0bb10be2b8f96ee4d27a2dfb7e0d03de68cf114", "name": "DE", "container_state": "NORMAL", "original_uoi_id": "c0bb10be2b8f96ee4d27a2dfb7e0d03de68cf114", "sequence_number": 0}, {"id": "b124e1ed196028bdd0e2c093e28078ca8d9ad462", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "b124e1ed196028bdd0e2c093e28078ca8d9ad462", "sequence_number": 0}, {"id": "68ce80e8c8a30badb82dabfd823886a6fa6fe309", "name": "Y - Geography", "container_state": "NORMAL", "original_uoi_id": "68ce80e8c8a30badb82dabfd823886a6fa6fe309", "sequence_number": 0}], "complete": true, "sequence_number": 1, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "sequence_number": 0}, {"id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "name": "Read Only", "container_state": "NORMAL", "original_uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "sequence_number": 0}, {"id": "23b155c32d5c6142914b41458234c100812bbec8", "name": "Oliver", "container_state": "NORMAL", "original_uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "sequence_number": 0}, {"id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "name": "Z - Exchange", "container_state": "NORMAL", "original_uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "sequence_number": 0}], "complete": true, "sequence_number": 1, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}], "creator_id": "1003", "asset_state": "NORMAL", "checked_out": false, "folder_path": "", "content_size": 11710, "content_type": "BITMAP", "content_state": "NORMAL", "date_imported": "2026-01-14T14:23:41.743+01:00", "import_job_id": 225736, "subscribed_to": false, "collection_ids": [], "latest_version": true, "legacy_model_id": 116, "content_editable": true, "import_user_name": "bizAdmin", "date_last_updated": "2026-01-14T14:27:26.563+01:00", "metadata_model_id": "ECOMMERCE", "original_asset_id": "85a99b184653d78906eccc8934a67e5ed4bcd9e9", "rendition_content": {"preview_content": {"id": "e2d4cf15ef6d49db983e84862db5de2f0a71489b", "url": "/otmmapi/v6/renditions/e2d4cf15ef6d49db983e84862db5de2f0a71489b", "name": "images-S.png", "width": 225, "height": 225, "mime_type": "image/png", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "PREVIEW", "content_path": "data\\\\repository\\\\screen\\\\vol0\\\\186\\\\images-S_e2d4cf15ef6d49db983e84862db5de2f0a71489b.png", "content_size": 86752, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "thumbnail_content": {"id": "59f031c0ae0f40304470477eb86a29a93d8822c5", "url": "/otmmapi/v6/renditions/59f031c0ae0f40304470477eb86a29a93d8822c5", "name": "images-T.png", "width": 225, "height": 225, "mime_type": "image/png", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "THUMBNAIL", "content_path": "data\\\\repository\\\\thumb\\\\vol0\\\\201\\\\images-T_59f031c0ae0f40304470477eb86a29a93d8822c5.png", "content_size": 86752, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_content_info": {"master_content": {"id": "54b52b6e3712943efccbb09320095372e7ded965", "url": "/otmmapi/v6/renditions/54b52b6e3712943efccbb09320095372e7ded965", "name": "images.jpg", "width": 225, "height": 225, "mime_type": "image/jpeg", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\227\\\\images_54b52b6e3712943efccbb09320095372e7ded965.jpg", "content_size": 11710, "unit_of_size": "BYTES", "content_checksum": "27e06263333fb7d367ba8ee6ab78df97", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_state_user_id": "1003", "master_content_info": {"id": "54b52b6e3712943efccbb09320095372e7ded965", "url": "/otmmapi/v6/renditions/54b52b6e3712943efccbb09320095372e7ded965", "name": "images.jpg", "width": 225, "height": 225, "mime_type": "image/jpeg", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\227\\\\images_54b52b6e3712943efccbb09320095372e7ded965.jpg", "content_size": 11710, "unit_of_size": "BYTES", "content_checksum": "27e06263333fb7d367ba8ee6ab78df97", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "delivery_service_url": "https://ppr.dam.ferrero.com/adaptivemedia/rendition?id=85a99b184653d78906eccc8934a67e5ed4bcd9e9", "product_associations": false, "security_policy_list": [{"id": 5467, "name": "Marketing Viewer", "status": "NORMAL", "created_by": "1003", "create_date": "2023-10-06T16:52:07.297+02:00", "description": "Marketing Viewer", "ownership_type": "PUBLIC"}, {"id": 9525, "name": "Premium Chocolate Local DE Editable Ferrero Rocher", "status": "NORMAL", "created_by": "1003", "create_date": "2024-11-26T10:08:39.973+01:00", "description": "Premium Chocolate Local DE Editable Ferrero Rocher", "ownership_type": "PUBLIC"}], "thumbnail_content_id": "59f031c0ae0f40304470477eb86a29a93d8822c5", "content_state_user_id": "1003", "content_state_user_name": "OTMM BusinessAdmin", "asset_lock_state_user_id": "1003", "metadata_state_user_name": "OTMM BusinessAdmin", "access_control_descriptor": {"permissions_map": {"entry": [{"key": "text.securityPolicy.permission.Custom04Permission", "value": true}, {"key": "text.securityPolicy.permission.ContentEditPermission", "value": true}, {"key": "text.securityPolicy.permission.AssetViewPermission", "value": true}, {"key": "text.securityPolicy.permission.ProjectViewPermission", "value": true}, {"key": "text.securityPolicy.permission.MembershipEditPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom03Permission", "value": true}, {"key": "text.securityPolicy.permission.MetaDataEditPermission", "value": true}, {"key": "text.securityPolicy.permission.EditParentsPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom02Permission", "value": true}, {"key": "text.securityPolicy.permission.ExportPermission", "value": true}, {"key": "text.securityPolicy.permission.SummaryViewPermission", "value": true}, {"key": "text.securityPolicy.permission.PreviewViewPermission", "value": true}, {"key": "text.securityPolicy.permission.SubscribePermission", "value": true}, {"key": "text.securityPolicy.permission.DeleteAssetPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom01Permission", "value": true}]}}, "content_lock_state_user_id": "1003", "asset_state_last_update_date": "2026-01-14T14:27:26.563+01:00", "content_lock_state_user_name": "bizAdmin", "metadata_lock_state_user_name": "bizAdmin", "content_state_last_update_date": "2026-01-14T14:23:42.017+01:00", "inherited_metadata_collections": [{"container_id": "d4d9835db002b9992125246f2abb7117c99ab016", "container_name": "05. Final Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "d4d9835db002b9992125246f2abb7117c99ab016", "originator_id": "d4d9835db002b9992125246f2abb7117c99ab016", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "05. Final Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "container_name": "MASTER CAMP FER ROCHER 12.01.2", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "MASTER CAMP FER ROCHER 12.01.2"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000783"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "MASTER_CAMP_FER_ROC_CQ_LG_DE_PRE_0000783"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local comm on global brands"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Master Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Master Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2026/2027"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "B1"}, "display_value": "Master campaign ready for re-mastering", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ADDITIONALAPPROVER", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.LICENSING", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "d0ef653291e269a7d1ddf0ebfedd1c6ad70b1c59"}, "metadata_element": {"id": "FERRERO.FIELD.LICENSING", "name": "Campaign License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "LICENSING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}}]}, {"container_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "container_name": "01. DE - Rocher ", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "bb01cf85444107f22341d2b88421f0cbaade0bf9"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E006"}, "display_value": "GERMANY", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Local DE Editable Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Premium Chocolate Local DE Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "8f497ce53d23899c7c09aa5a7ca69c9f55c3a62d"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E64"}, "display_value": "GERMANY", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "ca70a6d55e4277ecbef2a01a593c614501cbcf74"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "3e9d669ab1047383d0416ba40af75744148c94c8"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0e241fc386dcd91baa31a409e297169fe4a352c2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "2e3e0f2be0e487b540d9b63cb8c0e9ed9c6b1bb6"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "359c98154f230a60acc6b4eb048e129411d7a778"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "b3698893fc223e8371f4e4c0d560d0536c724a09"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "e92f9f10c0c29dda8261218c2c72a0baa66472f2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "15dff42c3b196ba3ae5b3c2ea33f00e347e6f654"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Extended Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0ae044cd9dddf86cd9406c9edc3996b18c430be0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "name": "AMMC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AMMC", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LOCAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "7806fed6127b50c21f6b03e1f7b63f3dedc1e8d1"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "RMMC", "values": [{"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "4c8a2d6e178638bfacfeaf3f7f6f1000304693a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "name": "Product Asset Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Product Asset Approval Ferrero Rocher Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Asset Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCT_ASSET_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local comm on global brands"}, "display_value": "Local comm on global brands", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "5a1ae26558efdc03336c0df838dd9e7c2a51c687"}, "metadata_element": {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "name": "Market Unit", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market Unit", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETUNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "MARKET_UNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "091216b59cad7f1ea815164c26db27e350c54023", "container_name": "EU", "container_type_id": "GEOGRAPHYLOCAL", "container_type_name": "L4 - GEOGRAPHY LOCAL", "inherited_metadata_values": [{"id": "FERRERO.MARKET.FOLDER.GLOBAL", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "4c4d4bf36bf8b1ace55f990e78d6332a9cb20990"}, "metadata_element": {"id": "FERRERO.MARKET.FOLDER.GLOBAL", "name": "Global/Local (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "LOCAL"}, "display_value": "Local", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local (Marketing)", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "GLOBALLOCAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_AREA", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "3dc200c993ab8263952dc6da1498026f615f45dd"}, "metadata_element": {"id": "MARKETING_AREA", "name": "AREA", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E010"}, "display_value": "EUROPE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "AREA", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "AREA", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "AREA", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "dc7749c3e113ec9e0b9e9a3840ea55673ca5e49f"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "f2d658a3829c2ea158ae70a4b4e7928bcf88f8e2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "972d0258a82de85672bd84d8af68cdb67ad3d3ca"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "1212505ad3fe4c9d7458568f3d95aeb4c4e5c37e"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "9d1dfdef55ff7a3eb03552988ddf729c7a0f5107"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "54f006eeb366121a29ee98da33d437615dcd34e0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "1fd8802010e30d44cebb2f3eb090b12ac550f97d"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "8b6e1d8f7dc3c4671cfc11a2914d838ca3ee3f3b"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "be0dc9a87262ee7fd165237b531ba3b7aa93a260"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "2f99f0f0f9e43fb34df9222c8b73a86fb78e473e"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "container_name": "01. Rocher", "container_type_id": "GLOBALBRAND", "container_type_name": "L3 - BRAND", "inherited_metadata_values": [{"id": "FERRERO.TABULAR.NEW.BRAND", "tabular": true, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "9bb1c183135f5240f09132aef59c4ea48c762381"}, "metadata_element": {"id": "FERRERO.TABULAR.NEW.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF04"}, "display_value": "ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND (Marketing)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF04"}, "display_value": "ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "BRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TABULAR_BRAND", "column_name": "BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.NEW.BRAND", "parent_table_name": "BRAND (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "tabular": true, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "a37b13c02cba799378211e17b73234a0d836f9b6"}, "metadata_element": {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "CQ"}, "display_value": "FERRERO ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND(HARMONIZED)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "CQ"}, "display_value": "FERRERO ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.HARMONIZEDBRAND", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_HARMONIZEDBRAND", "column_name": "HARMONIZEDBRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.HARMONIZEDBRAND", "parent_table_name": "BRAND(HARMONIZED)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "AGENCY.COLLABORATION", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "183d6e0957a9940f9b18ef44f46d957802b63397"}, "metadata_element": {"id": "AGENCY.COLLABORATION", "name": "Agency collaboration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency collaboration", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "AGENCY_COLLABORATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "AGENCY.SHARING", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "d0e2b725ddfdc452cc3ba750bbe8ec059c6b01ba"}, "metadata_element": {"id": "AGENCY.SHARING", "name": "Agency sharing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency sharing", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "AGENCY_SHARING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "CONTENT.SCALING.AGENCYNAME", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "f9dfa695cc5ef8cd3fafada4e44cfdaa1522d58a"}, "metadata_element": {"id": "CONTENT.SCALING.AGENCYNAME", "name": "Content Scaling agency name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Scaling agency name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENTSCALING_AGENCYNAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "container_name": "01. Ferrero Rocher", "container_type_id": "GLOBALSUBCATEGORY", "container_type_name": "L2 - SUBCATEGORY", "inherited_metadata_values": [{"id": "MARKETING_SUBCATEGORY", "tabular": false, "value_id": {"uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "originator_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "inherited_field_id": "3000ad591e09b5c75f85fc2ccbb9ebeb31b3ab78"}, "metadata_element": {"id": "MARKETING_SUBCATEGORY", "name": "SUBCATEGORY", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Mart-Ferrero-Rocher"}, "display_value": "Ferrero Rocher", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "SUBCATEGORY", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "SUBCATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "SUBCATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "tabular": true, "value_id": {"uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "originator_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "inherited_field_id": "2c751ce760d88c0e271925ea5149348106944bfa"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Subcategory Owner", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_SUBCATEGORY_OWNER_TM", "column_name": "SUBCATEGORY_OWNER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "parent_table_name": "Subcategory Owner", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "container_name": "03. Premium Chocolate", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "originator_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E06"}, "display_value": "PREMIUM CHOCOLATE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "originator_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final Approver BPS ", "values": [{"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "container_name": "00. Master Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "originator_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00. Master Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "container_name": "LOCADAPLOCCOMM - FER ROCHER 4", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "LOCADAPLOCCOMM - FER ROCHER 4"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000794"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "LOCADAPLOCCOMM_-__CQ_LAL_MLT_PRE_0000794"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local adaptation of local comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Master Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000783"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Master Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "DK"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "DK"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "SE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "FI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "NO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "IS"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "GL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2025/2026"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2797"}, "display_value": "Owner, Asset (AssetownerLoG, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2797"}, "display_value": "Owner, Asset (AssetownerLoG, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2797"}, "display_value": "Owner, Asset (AssetownerLoG, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2797"}, "display_value": "Owner, Asset (AssetownerLoG, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "A2"}, "display_value": "Selected Master Assets sent to Agency", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ADDITIONALAPPROVER", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.LICENSING", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "d0ef653291e269a7d1ddf0ebfedd1c6ad70b1c59"}, "metadata_element": {"id": "FERRERO.FIELD.LICENSING", "name": "Campaign License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "LICENSING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}}]}, {"container_id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "container_name": "25-26", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "originator_id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "25-26"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "container_name": "02. Campaign", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "originator_id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "02. Campaign"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "f31042cfc487f066486c46527c076b8ee6618ceb", "container_name": "01. Standard", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "f31042cfc487f066486c46527c076b8ee6618ceb", "originator_id": "f31042cfc487f066486c46527c076b8ee6618ceb", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "01. Standard"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "container_name": "02. Sweden", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "originator_id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "02. Sweden"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "container_name": "SCANDINAVIA", "container_type_id": "GLOBALMARKETUNIT", "container_type_name": "L6 - MARKET UNIT", "inherited_metadata_values": [{"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "24a6615bcce9adc5a098c76c29b8e8baba61a9a3"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E22"}, "display_value": "SCANDINAVIA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "13063087b81ea172db42e69ed8e8fa013cd5bfe0"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Local SCANDINAVIA Editable Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "bf49ba2a40d0d0dccee4d5de7381659b106dd89a"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Premium Chocolate Local SCANDINAVIA Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "8e4d311466783d8215a38b08bee3cb2b3bfcf40f"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "9e88b5726590ab30642999a28a301e3fbcebc762"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "name": "Published Security Policy - Restricted Visibility", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Security Policy - Restricted Visibility", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_VISIBILITY_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "3c0070e420882e3e18f6097811cb60a67239003b"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local SCANDINAVIA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "7f3c1933b61e900457ea6e2aab750303882873d4"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "b0c960759e48c0fcdcb650417179a614da95e866"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Local SCANDINAVIA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "6f603fcc63415e266dc35cf2314d31357a2966bf"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "3c12728b06ecfafeeb74482ea7b7296b180765f9"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "dc9b8ffa0591a1b2956c07fa5dc10ff477c84f4e"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "495fa4f08769a021cfa907dfb7a903fade9bd19a"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "e3b647e172a89e1e7cbdd2964faff1bca8dcf520"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "6870cca056b54cd400a9fbd4fe75513e69cedcdd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "RMMC", "values": [{"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "container_name": "01. MC - Rocher", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "bb01cf85444107f22341d2b88421f0cbaade0bf9"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E023"}, "display_value": "MULTI COUNTRY EUROPE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "8f497ce53d23899c7c09aa5a7ca69c9f55c3a62d"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E22"}, "display_value": "SCANDINAVIA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "ca70a6d55e4277ecbef2a01a593c614501cbcf74"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "3e9d669ab1047383d0416ba40af75744148c94c8"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "0e241fc386dcd91baa31a409e297169fe4a352c2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "2e3e0f2be0e487b540d9b63cb8c0e9ed9c6b1bb6"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "359c98154f230a60acc6b4eb048e129411d7a778"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "b3698893fc223e8371f4e4c0d560d0536c724a09"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "e92f9f10c0c29dda8261218c2c72a0baa66472f2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "15dff42c3b196ba3ae5b3c2ea33f00e347e6f654"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "0ae044cd9dddf86cd9406c9edc3996b18c430be0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "name": "AMMC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AMMC", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LOCAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "7806fed6127b50c21f6b03e1f7b63f3dedc1e8d1"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "RMMC", "values": [{"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "4c8a2d6e178638bfacfeaf3f7f6f1000304693a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "name": "Product Asset Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Asset Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCT_ASSET_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of local comm"}, "display_value": "Local adaptation of local comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of local comm"}, "display_value": "Local adaptation of local comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "5a1ae26558efdc03336c0df838dd9e7c2a51c687"}, "metadata_element": {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "name": "Market Unit", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market Unit", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETUNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "MARKET_UNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "container_name": "Read Only", "container_type_id": "L3 - Agency Structure", "container_type_name": "L3 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "55530f721f18c847e35d7c828edf53461b5014b0"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "330bb6f68316aab5c45f9fe34e047cce573c67cc"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "name": "Agency Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "AGENCY_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "e30e90d694f9935d4c15c4c78891beed8853a272"}, "metadata_element": {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "name": "Published Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "PUBLISHED_ASSET_SP_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "23b155c32d5c6142914b41458234c100812bbec8", "container_name": "Oliver", "container_type_id": "L2 - Agency Structure", "container_type_name": "L2 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.AGENCY", "tabular": false, "value_id": {"uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "originator_id": "23b155c32d5c6142914b41458234c100812bbec8", "inherited_field_id": "48fcbc397986aca5bb8722a95197dd0a46f19b4e"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_AGENCY", "column_name": "AGENCY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "container_name": "Z - Exchange", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "YY"}, "display_value": "AGENCIES", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Final Approver BPS ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}], "asset_lock_state_last_update_date": "2026-01-14T14:27:42.143+01:00", "content_lock_state_last_update_date": "2026-01-14T14:23:42.103+01:00"}, "language_code": null, "language_name": null, "subject_title": null, "file_extension": ".jpg", "asset_type_name": null, "file_size_bytes": null, "duration_seconds": null, "upload_directory": "d4d9835db002b9992125246f2abb7117c99ab016", "local_campaign_id": null, "original_filename": "images", "global_master_folder_id": null, "global_master_campaign_id": null} 2026-01-16 20:54:48.714499 \N 21 MnknDd master_asset_created {"id": 21, "tags": null, "status": "active", "width_px": null, "height_px": null, "mime_type": "video/mp4", "asset_type": null, "brand_code": null, "brand_name": null, "categories": null, "created_at": "2026-01-16T20:54:56.82303", "deleted_at": null, "is_deleted": false, "updated_at": "2026-01-16T20:54:56.82303", "description": "Box File ID: 2105223961990\\nBox URL: https://app.box.com/file/2105223961990\\nDAM Asset ID: 6341dedf8117677336cb66fa9a7ce94c4c2d10d1", "ingested_at": "2026-01-16T20:54:56.82303", "ingested_by": null, "opentext_id": "6341dedf8117677336cb66fa9a7ce94c4c2d10d1", "tracking_id": "MnknDd", "aspect_ratio": null, "country_code": null, "country_name": null, "full_metadata": {"name": "kinder-joy_videoE2E.mp4", "links": {"links": [], "source_id": "6341dedf8117677336cb66fa9a7ce94c4c2d10d1"}, "locked": false, "deleted": false, "expired": false, "version": 1, "asset_id": "6341dedf8117677336cb66fa9a7ce94c4c2d10d1", "metadata": {"id": "ECOMMERCE", "name": "Marketing Asset", "type": "com.artesia.metadata.MetadataModel", "legacy_id": 116, "metadata_element_list": [{"id": "FERRERO.CATEGORY.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200054, "metadata_element_list": [{"id": "FERRERO.FIELD.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Status", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.CONTENT_STATUS", "edit_type": "COMBO_NOTNULL", "facetable": false, "searchable": true, "table_name": "FERRERO_CONTENT_STATUS_MD", "column_name": "CONTENT_STATUS", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9215, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRER.CATEGORY.ASSET_INFO", "name": "Asset Info", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200022, "metadata_element_list": [{"id": "FERRERO.FIELD.MKTG.ASSET TYPE", "name": "Asset Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.ASSETTYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.FISCAL YEAR", "name": "Release Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2026/2027"}, "display_value": "2026/2027", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Release Fiscal Year", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_DOMAIN_FISCAL_YEAR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "FISCAL__YEAR", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "name": "Main Languages", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1210, "metadata_element_list": [{"id": "MAIN_LANGUAGES", "name": "MAIN LANGUAGES", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "MAIN LANGUAGES", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MAIN LAGUAGES_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MAIN_LANGUAGE_TABLE", "column_name": "MAIN_LANGUAGE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "parent_table_name": "Main Languages", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.ASSET DESCRIPTION", "name": "Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Description", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "DESCR", "data_length": 249, "description": "Descriptive information", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.FLAVOUR", "name": "Flavour", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Flavour", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.FLAVOUR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FLAVOUR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.SIZE", "name": "Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Size", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.SIZE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SIZE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1241, "metadata_element_list": [{"id": "FERRERO.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Compliance", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ASSETCOMPLIANCE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_COMPLIANCE", "column_name": "ASSET_COMPLIANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "parent_table_name": "Asset Compliance", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.TAG DETAILS", "name": "Tag Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 118, "metadata_element_list": [{"id": "ARTESIA.FIELD.TAG", "name": "Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Tag", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.TAGS", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "OTMM_TAGS", "column_name": "TAG", "data_length": 80, "description": "Tag", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG CONFIDENCE", "name": "Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Confidence", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG TYPE", "name": "Tag Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Tag Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "TAG_TYPE", "data_length": 10, "description": "Tag Type", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED BY", "name": "Associated By", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Associated By", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_BY", "data_length": 10, "description": "Associated By", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED DATE", "name": "Associated Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Associated Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_DATE", "data_length": 10, "description": "Associated Date", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.STATE", "name": "Global/Local", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "GLOBAL"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO_NOTNULL", "facetable": true, "searchable": true, "table_name": "FERRERO_IC_ASSET_DETAILS", "column_name": "ASSET_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.ASPECT RATIO", "name": "Aspect Ratio (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio (Marketing)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASPECT_RATIO", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASPECT_RATIO", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "name": "Tag (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1222, "metadata_element_list": [{"id": "MARKETING_TAG", "name": "Marketing Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Marketing Tag", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.DOMAIN.TAG", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TAG_MARKET", "column_name": "TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "parent_table_name": "Tag (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.TAGS", "name": "Auto-Generated Tags", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Auto-Generated Tags", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "AUTO_GENERATED_TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CERTIFIER", "name": "Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approver", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.MARKETING.FIELD.APPROVAL DATE", "name": "Approval__Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approval__Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.LEGAL APPROVAL DATE", "name": "Legal Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CERTIFIER", "name": "IA&CC Certifier", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Certifier", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CC APPROVAL DATE", "name": "IA&CC Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "name": "Extended Approval", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1230, "metadata_element_list": [{"id": "FERRERO.FIELD.EXTENDED.APPROVAL", "name": "Extended Approval required by:", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended Approval required by:", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COMMENTS", "name": "Comment", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comment", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "COMMENTS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.DATE", "name": "Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USERS", "name": "User ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "User ID", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "USERS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXTENDED.JOBID", "name": "Extended JobID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended JobID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.MIGRATION.INDEX", "name": "Migration Index", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Migration Index", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MIGRATION.INDEX", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MIGRATION_INDEX", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "FERRERO_MARKET_MARKETING_CREATOR", "name": "Marketing Creator", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Marketing Creator", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.CREATOR", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MARKETING_CREATOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "ARTESIA.FIELD.IS LATEST VERSION", "name": "Is Latest Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Y"}, "display_value": "Yes", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Is Latest Version", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.YES_NO", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "IS_LATEST_VERSION", "data_length": 1, "description": "Is this the latest version? (Y/N)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET VERSION", "name": "Asset Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 1}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Version", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "INTEGER", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "VERSION", "data_length": 12, "description": "Version number of asset", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET_ID", "name": "Asset ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "6341dedf8117677336cb66fa9a7ce94c4c2d10d1"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset ID", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "LOGICAL_UOI_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.ECOMMERCE STATUS", "name": "Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "PUBLISHED"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Status", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "ASSET_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CREATOR", "name": "Uploaded by", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Uploaded by", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_USER_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.FIELD.CREATION DATE", "name": "Upload Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-14T14:23:41.74+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Upload Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_DT", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.ASSET NAME", "name": "Asset Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "kinder-joy_videoE2E.mp4"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Name", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "description": "Original name of master object", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.CONTENT TYPE", "name": "Content Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "VIDEO"}, "display_value": "Video", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Type", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.CONTENT_TYPES", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "CONTENT_TYPE", "data_length": 8, "description": "Content Type", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.MIME TYPE", "name": "File Extension", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "video/mp4"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Extension", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_MIME_TYPE", "data_length": 80, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.FILE.SIZE", "name": "File Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "long", "value": 3080691}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Size", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "LONG", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_SIZE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP RESOLUTION", "name": "Bitmap Resolution", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Resolution", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_RESOLUTION", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP WIDTH", "name": "Bitmap Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Width", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_WIDTH", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP HEIGHT", "name": "Bitmap Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Height", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_HEIGHT", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "name": "Approval Metadata", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1249, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.DEPARTMENT", "name": "Department", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Department", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "DEPARTMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.CERTIFIER", "name": "Certifier", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Certifier", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL DATE", "name": "Approval Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Approval Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "APPROVAL_DATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.COMMENT", "name": "Comments", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comments", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "COMMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.TYPE OF APPROVAL", "name": "Type of Approval", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Approval", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "TYPE_OF_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL STATUS", "name": "Approval Status", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Approval Status", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "APPROVAL_STATUS", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.SUB JOBID", "name": "Sub Job Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sub Job Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.VIDEO.BIT_RATE", "name": "Bitrate", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 2487939.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitrate", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "BIT_RATE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.EMBEDDED.FIELD.DURATION", "name": "Duration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00:00:09:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Duration", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "DURATION_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.ASPECT RATIO", "name": "Aspect Ratio", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "1.778"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "ASPECT_RATIO", "data_length": 30, "displayable": false, "instructions": "ASPECT_RATIO", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME HEIGHT", "name": "Frame Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 1080}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Height", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_HEIGHT", "data_length": 12, "displayable": true, "instructions": "FRAME_HEIGHT", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME WIDTH", "name": "Frame Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 1920}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Width", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_WIDTH", "data_length": 12, "displayable": true, "instructions": "FRAME_WIDTH", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.ASPECT.RATIO.POC", "name": "Aspect Ratio(POC)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "16:9"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio(POC)", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASPECT_RATIO_TABLE", "column_name": "ASPECT_RATIO", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "PRODUCT.DETAILS", "name": "Product Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200029, "metadata_element_list": [{"id": "FERRERO.TABLE.EANCODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1208, "metadata_element_list": [{"id": "EAN_CODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "EAN CODE/ 77 CODE", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "EAN.CODE", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "EAN_CODE", "column_name": "EAN_CODE_DESCRIPTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "COUNTRY", "name": "COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "EAN_CODE", "column_name": "COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKETING.ADVANCE.PRODUCT.LINK", "name": "Asset-to-product relation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset-to-product relation", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_MARKETING_ADVANCE_PRODUCT_LINK", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ADVANCE_PRODUCT_LINK", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 10182, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.SUB BRAND", "name": "Sub-Brands", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Sub-Brands", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.SUBBRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "SUB_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT WEIGHT", "name": "Product Weight", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Weight", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_WEIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.CONSUMER UNIT PACKAGING", "name": "Consumer Unit Packaging", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Consumer Unit Packaging", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PACK", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "CONSUMER_UNIT_PACKAGING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.4 DIGIT CODE", "name": "4 Digit Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "4 Digit Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "DIGITCODE", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERREO.ECOM.RETAILER_SPECIFIC_FIELD", "name": "Retailer Specific", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Retailer Specific", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "RETAILER_SPECIFIC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "cascading_group_id": "FERRERO.RETAILER.SPECIFIC", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY START PERIOD", "name": "Asset validity start period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity start period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_STARTING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY END PERIOD", "name": "Asset validity end period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity end period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_ENDING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.ASSET.NAMING.CONVENTION", "name": "Does asset need GS1 naming convention", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Does asset need GS1 naming convention", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASSETNAMINGCONVENTION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_NAMING_CONVENTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9515, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT VIEW", "name": "Product View", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product View", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT VIEW", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_VIEW", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT ANGLE", "name": "Product Angle", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Angle", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT.ANGLE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_ANGLE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT STATE", "name": "Product State", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product State", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT STATE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PROMOTION ID", "name": "Promo ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Promo ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROMO_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.BUSINESS.ASSET TYPE", "name": "Asset Type (eDAM)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Angled view", "field_value": {"type": "string", "value": "angledview"}, "display_value": "ANGLED VIEW", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Type (eDAM)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "OTMM.DOMAIN.OTMM_ASSETTYPE_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_BUSINESS_INFO", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7244, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200048, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.AGENCY NAME", "name": "Agency Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "0000000001"}, "display_value": "ATest", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Agency Name", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.AGENCY_NAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AGENCY_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7336, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.CREATIX", "name": "CreativeX", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200059, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.CREATIVEX", "name": "Confidence", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1245, "metadata_element_list": [{"id": "FERRERO.TAB.FIELD.CREATIVEX", "name": "Platform > Rating (%)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Platform > Rating (%)", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_CREATIVEX", "column_name": "CREATIVEX_NEW", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CREATIVEX", "parent_table_name": "Confidence", "cascading_group_id": "FERRERO.CREATIVEX.CHAR", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.CREATIVEX LINK", "name": "CreativeX Hyperlink", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "CreativeX Hyperlink", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_CREATIVEX", "column_name": "CREATIVE_LINK", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.IP_RIGHTS", "name": "IP Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200046, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.IPRIGHT", "name": "IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IP Rights", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.IPRIGHTS", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IP_RIGHTS", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.BUYOUT", "name": "Touchpoint Scope", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Touchpoint Scope", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.TOTAL_BUYOUT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TOTAL_BUYOUT", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.FERRERO PROPERTY", "name": "Ferrero Property", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Ferrero Property", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.FERRERO_PROPERTY", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FERRERO_PROPERTY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200035, "metadata_element_list": [{"id": "FERRERO.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1209, "metadata_element_list": [{"id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "name": "IP Coverage, Area, Region & Market Unit", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Coverage, Area, Region & Market Unit", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "IPCOVERAGE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "cascading_group_id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHT TYPE", "name": "Copyright Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHT_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.MEDIATYPE", "name": "Media Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Media Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MEDIA_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "MEDIA_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE FROM", "name": "Expiration of Usage - From", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - From", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_FROM", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE TO", "name": "Expiration of Usage - To", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - To", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_TO", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO._DURATION", "name": "IP Duration", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Duration", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "ECOM_DURATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHTTYPE DETAILS", "name": "Copyright Type Details", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type Details", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHTTYPE_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 6, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.MARKET.VID_STAT_RIGHT", "name": "Video & Static Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200047, "metadata_element_list": [{"id": "FERRERO.MARKET.VID_N_STAT", "name": "Video and Static Right", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video and Static Right", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VID_AND_STAT_RIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.VID_STAT_TYPE", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1221, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.TYPE_VID", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Video & Static Right", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TYPE_VID_STAT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_MARKET_TYPE_VID_STAT", "column_name": "TYPE_OF_VIDEO_STATIC_RIGHT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.VID_STAT_TYPE", "parent_table_name": "Type of Video & Static Right", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKET.PROD_COMPANY", "name": "Production House", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Production House", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.PRODUCT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200050, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.LICENSIN", "name": "Licensing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Licensing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSING", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "cascading_group_id": "FERRERO.MARKET.CG.LICENSE", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.SPOT_DETAILS", "name": "Spot Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200049, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.SPOT_VERSION", "name": "Spot Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Version", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_VERSION", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_VERSION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.SPOT_TYPE", "name": "Spot Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_TYPE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.DIRECTOR_NAME", "name": "Director Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Director Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "DIRECTOR_NAME", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VIDEO_POST_PROD_COMPANY", "name": "Video Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VID_POST_PROD_CONTACT", "name": "Video Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_COMPANY", "name": "Audio Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_CONTACT", "name": "Audio Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.BROADCASTER.CODE", "name": "Broadcaster Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Broadcaster Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BROADCASTER_CODE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.TECHNICAL_VALIDATION", "name": "Technical Validation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Technical Validation", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TECHNICAL_VALIDATION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS", "name": "Media Analysis", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1002, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "name": "Categories", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 105, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY NAME", "name": "Category Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Category Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "NAME", "data_length": 100, "description": "Category Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY CONFIDENCE", "name": "Category Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Category Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "CONFIDENCE", "data_length": 10, "description": "Category Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES COUNT", "name": "Faces Count", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Faces Count", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACECOUNT", "column_name": "COUNT", "data_length": 10, "description": "Faces Count", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "name": "Face Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 106, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME", "name": "Recognized Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME", "data_length": 2000, "description": "Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME CONFIDENCE", "name": "Recognized Name Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME_CONFIDENCE", "data_length": 10, "description": "Name Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE", "name": "Person Age", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE", "data_length": 10, "description": "Person Age", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE CONFIDENCE", "name": "Person Age Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Person Age Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_CONFIDENCE", "data_length": 10, "description": "Person Age Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER", "name": "Gender", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Gender", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.GENDER", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER", "data_length": 40, "description": "Gender", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER CONFIDENCE", "name": "Gender Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Gender Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER_CONFIDENCE", "data_length": 10, "description": "Gender Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.FACE COORDS", "name": "Face Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "FACE_COORDS", "data_length": 200, "description": "Face Coordinates like postion, height,width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE GROUP", "name": "Person Age Group", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age Group", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.AGE GROUP", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_GROUP", "data_length": 10, "description": "Person Age Group", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "name": "Safe Content", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 107, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONTENT TYPE", "name": "Safe Content Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Safe Content Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENTS", "data_length": 20, "description": "Safe Content Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONFIDENCE", "name": "Content Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Content Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENT_CONFIDENCE", "data_length": 10, "description": "Safe Content Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "name": "Colors", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 108, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.NAME", "name": "Color", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Color", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "NAME", "data_length": 25, "description": "COLOR", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.PROPORTION", "name": "Color Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Color Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "PROPORTION", "data_length": 10, "description": "Proportion", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.FOREGROUND", "name": "Foreground Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Foreground Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "FOREGROUND", "data_length": 25, "description": "Foreground Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.BACKGROUND", "name": "Background Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Background Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "BACKGROUND", "data_length": 25, "description": "Background Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.ISBW", "name": "Is Black and White", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Is Black and White", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "ISBW", "data_length": 10, "description": "Is Black and White", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "name": "Captions", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 109, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION TEXT", "name": "Caption Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Caption Text", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "TEXT", "data_length": 2000, "description": "Caption Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION CONFIDENCE", "name": "Caption Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Caption Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "CAPTION_CONFIDENCE", "data_length": 10, "description": "Caption Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "name": "Image Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 110, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.IMAGE TYPE", "name": "Analysis Image Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Analysis Image Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_IMAGE_TYPE", "column_name": "TYPE", "data_length": 100, "description": "Image Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "parent_table_name": "Image Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.DATE", "name": "Date: Media Analysis", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-14T14:26:29+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date: Media Analysis", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MEDIA_ANALYSIS_DATE", "data_length": 25, "description": "Date Media Analysis was done on the asset.", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR LANGUAGE", "name": "Image Text Language", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Image Text Language", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "LANGUAGE", "data_length": 10, "description": "OCR data language", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR TEXT", "name": "Text on Image", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Text on Image", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "TEXT", "data_length": 4000, "description": "OCR Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "name": "Embedded Brand Info", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 119, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.NAME", "name": "Embedded Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Embedded Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Embedded Brand Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.CONFIDENCE", "name": "Embedded Brand Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Embedded Brand Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Embedded Brand Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.COORDINATES", "name": "Embedded Brand Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Embedded Brand Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "COORDINATES", "data_length": 200, "description": "Embedded Brand Coordinates like position, height, width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "HYBRIS.PRODUCT.INFO", "name": "PIM Item Reference", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200027, "metadata_element_list": [{"id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "name": "Hybris Item Reference", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1206, "metadata_element_list": [{"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ID", "name": "Hybris Item ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ID", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT TAG NAME", "name": "Hybris Assignment Label", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Assignment Label", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_TAG_NAME", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ATTRIBUTE NAME", "name": "Hybris Attribute Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Attribute Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ATTRIBUTE_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT CATALOG NAME", "name": "Hybris Catalog Mnemonic", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Catalog Mnemonic", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_CATALOG_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT PK", "name": "Hybris Item PK", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item PK", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_PK", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.SYSTEM ID", "name": "Hybris System ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris System ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "SYSTEM_ID", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.ASSIGNED", "name": "Assigned", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Assigned", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "ASSIGNED", "column_name": "ASSIGNED", "data_length": 38, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PIM TYPE", "name": "PIM Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "PIM Type", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_PIM_TYPE", "column_name": "PIM_TYPE", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS VIDEO", "name": "Media Analysis Video", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1003, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "name": "Labels", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 113, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.ID", "name": "Label Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Label Id", "values": [{"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 1}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 2}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "ID", "data_length": 40, "description": "Label Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.NAME", "name": "Label Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "clothing"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Label Name", "values": [{"value": {"type": "string", "value": "clothing"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "fabric"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "candy"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "NAME", "data_length": 40, "description": "Label Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.APPEARANCES", "name": "Label Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:03\\",\\"endTime\\":\\"0:00:03.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Label Appearances", "values": [{"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:03\\",\\"endTime\\":\\"0:00:03.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:03\\",\\"endTime\\":\\"0:00:03.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:07\\",\\"endTime\\":\\"0:00:07.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "APPEARANCES", "data_length": 0, "description": "Label Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "name": "Sentiments", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 114, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.ID", "name": "Sentiment Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "ID", "data_length": 40, "description": "Sentiment Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.NAME", "name": "Sentiment Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "NAME", "data_length": 40, "description": "Sentiment Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.APPEARANCES", "name": "Sentiment Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "APPEARANCES", "data_length": 0, "description": "Sentiment Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.SEEN.DURATION.RATIO", "name": "Sentiment Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Sentiment Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "name": "Keywords", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 115, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.ID", "name": "Keyword Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "ID", "data_length": 40, "description": "Keyword Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.NAME", "name": "Keyword Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "NAME", "data_length": 40, "description": "Keyword Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.APPEARANCES", "name": "Keyword Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Keyword Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "name": "Faces", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 111, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.ID", "name": "Face Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "ID", "data_length": 40, "description": "Face Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.NAME", "name": "Face Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "NAME", "data_length": 40, "description": "Face Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.TITLE", "name": "Face Title", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Title", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "TITLE", "data_length": 249, "description": "Face Title", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.DESCRIPTION", "name": "Face Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Face Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.APPEARANCES", "name": "Face Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "APPEARANCES", "data_length": 0, "description": "Face Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SPEAKER.FACE.ID", "name": "Video Speaker Object Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Speaker Object Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "THUMBNAIL_OBJECT_ID", "data_length": 40, "description": "Video Speaker Object Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.SEEN.DURATION.RATIO", "name": "Face Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "SEEN_DURATION_RATIO", "data_length": 20, "description": "Face Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "name": "Brands", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 112, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.ID", "name": "Video Brand Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "ID", "data_length": 40, "description": "Brand Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.NAME", "name": "Video Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Brand Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.DESCRIPTION", "name": "Video Brand Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Brand Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.WIKIURL", "name": "Video Brand Wiki URL", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Wiki URL", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "WIKIURL", "data_length": 200, "description": "Brand Wiki URL", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.APPEARANCES", "name": "Video Brand Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Brand Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.SEEN.DURATION.RATIO", "name": "Video Brand Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Brand Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "name": "Speeches", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 116, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.ID", "name": "SpeechText Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "SpeechText Id", "values": [{"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "ID", "data_length": 40, "description": "SpeechText Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXT", "name": "Speech Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Kinder"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Speech Text", "values": [{"value": {"type": "string", "value": "Kinder"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXT", "data_length": 1000, "description": "Speech Text", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXTTYPE", "name": "Speech Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "OCR"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Speech Type", "values": [{"value": {"type": "string", "value": "OCR"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXTTYPE", "data_length": 40, "description": "Speech Type", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.START TIME", "name": "Speech Start Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "0:00:09"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Speech Start Time", "values": [{"value": {"type": "string", "value": "0:00:09"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "START_TIME", "data_length": 40, "description": "Speech Start Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.END TIME", "name": "Speech End Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "0:00:09.04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Speech End Time", "values": [{"value": {"type": "string", "value": "0:00:09.04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "END_TIME", "data_length": 40, "description": "Speech End Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "name": "Speakers", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 122, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.ID", "name": "Speaker Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "ID", "data_length": 40, "description": "Speaker Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.NAME", "name": "Speaker Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "NAME", "data_length": 100, "description": "Speaker Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.APPEARANCES", "name": "Speaker Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "APPEARANCES", "data_length": 0, "description": "Speaker Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.FIELDGROUP.LOCALASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200057, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1239, "metadata_element_list": [{"id": "FERRERO.FIELD.COUNTRY", "name": "LOCAL COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "LOCAL COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USER", "name": "USER", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "USER", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_USER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.ASSOCIATION", "name": "TYPE OF ASSOCIATION", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "TYPE OF ASSOCIATION", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_ASSOCIATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.VALUE", "name": "VALUE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "VALUE", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_VALUE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "CG.CATEGORY.FADEL ASSET INFORMATION", "name": "Rights Asset Information", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200064, "metadata_element_list": [{"id": "CG.FIELD.RIGHTS MANAGED", "name": "Fadel IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fadel IP Rights", "enabled": true, "options": "", "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_RIGHTS_MANAGED_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGED", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.NEEDS RIGHTS MANAGEMENT", "name": "Needs Rights Management", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "10", "field_value": {"type": "string", "value": "N"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Needs Rights Management", "enabled": true, "options": "", "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_NEEDS_RIGHTS_MANAGEMENT_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "NEEDS_RIGHTS_MANAGEMENT", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.RIGHTS MANAGEMENT DESCRIPTION", "name": "Rights Management Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Rights Management Description", "enabled": true, "options": "", "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGEMENT_DESCRIPTION", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.RIGHTS MANAGEMENT STATUS", "name": "Rights Management Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Rights Management Status", "enabled": true, "options": "", "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_RIGHTS_MANAGEMENT_STATUS_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGEMENT_STATUS", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.FORCE SYNC", "name": "Force Sync", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Force Sync", "enabled": true, "options": "", "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_FORCE_SYNC_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "FORCE_SYNC", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.LAST SYNC TIME", "name": "Date of last data sync", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date of last data sync", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "LAST_SYNC_TIME", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "CG.CATEGORY.FADEL RIGHTS INFORMATION", "name": "Rights Information", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200065, "metadata_element_list": [{"id": "CG.TABLE.RIGHTS", "name": "Rights", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1256, "metadata_element_list": [{"id": "CG.FIELD.RIGHT TERRITORIES", "name": "Territory", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Territory", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "TERRITORY", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT USES", "name": "Use", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Use", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "USAGE", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT IN DATE", "name": "In Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "In Date", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "IN_DATE", "data_length": 10, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT OUT DATE", "name": "Out Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Out Date", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "OUT_DATE", "data_length": 10, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "saved_values_behavior_mode": 0}]}]}, {"id": "CG.CATEGORY.FADEL AGREEMENTS AND PARTIES", "name": "Agreements and Parties", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200067, "metadata_element_list": [{"id": "CG.TABLE.PARTIES.AGREEMENTS VW", "name": "Customized Table Parties and Agreements", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1258, "metadata_element_list": [{"id": "CG.FIELD.AGREEMENT NUMBER VW", "name": "Agreement Number ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Number ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_NUMBER", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT DESCRIPTION VW", "name": "Agreement Description ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Description ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_DESCRIPTION", "data_length": 2000, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT START DATE VW", "name": "Agreement Start Date ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Start Date ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_START_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT END DATE VW", "name": "Agreement End Date ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement End Date ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_END_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY NAME VW", "name": "Party Name ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Name ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_NAME", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY ROLE VW", "name": "Party Role ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Role ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_ROLE", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY EMAIL ADDRESS VW", "name": "Party Email Address ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Email Address ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_EMAIL_ADDRESS", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY PHONE NUMBER VW", "name": "Party Phone Number ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Phone Number ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_PHONE_NUMBER", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PRIMARY PARTY CONTACT VW", "name": "Primary Party Contact ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Primary Party Contact ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PRIMARY_PARTY_CONTACT", "data_length": 200, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 8, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "ARTESIA.CATEGORY.VIDEO ATTRIBUTES", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 0, "metadata_element_list": [{"id": "ARTESIA.FIELD.VIDEO.FRAMERATE", "name": "Framerate", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 25.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Framerate", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": false, "data_type": "NUMBER", "facetable": false, "searchable": false, "table_name": "VIDEO_PARENT_ASSETS", "column_name": "FRAMERATE", "data_length": 0, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.VIDEO.START SMPTE", "name": "Start Time SMPTE", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00:00:00:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Start Time SMPTE", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "VIDEO_ASSETS", "column_name": "START_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.END SMPTE", "name": "End Time SMPTE", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00:00:09:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "End Time SMPTE", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "VIDEO_ASSETS", "column_name": "END_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.START MSEC", "name": "Start Time MSEC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Start Time MSEC", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": false, "data_type": "NUMBER", "facetable": false, "searchable": false, "table_name": "VIDEO_ASSETS", "column_name": "START_MSEC", "data_length": 0, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.VIDEO.END MSEC", "name": "End Time MSEC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 9040}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "End Time MSEC", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": false, "data_type": "NUMBER", "facetable": false, "searchable": false, "table_name": "VIDEO_ASSETS", "column_name": "END_MSEC", "data_length": 0, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.VIDEO.CLIP PARENT ID", "name": "Clip Parent Id", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Clip Parent Id", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": false, "data_type": "CHAR", "facetable": false, "searchable": false, "table_name": "VIDEO_ASSETS", "column_name": "PARENT_UOI_ID", "data_length": 40, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.VIDEO.LOW RES MIME TYPE", "name": "Low Resolution Mimetype", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "video/mp4"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Low Resolution Mimetype", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": false, "data_type": "CHAR", "facetable": false, "searchable": false, "table_name": "VIDEO_URLS", "column_name": "LO_RES_MIME_TYPE", "data_length": 80, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.VIDEO.VIDEO REFERENCE", "name": "Video Reference", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 36313}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Reference", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": false, "data_type": "NUMBER", "facetable": false, "searchable": false, "table_name": "VIDEO_ASSETS", "column_name": "VIDEO_REFERENCE", "data_length": 0, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.VIDEO.DURATION MSEC", "name": "Duration MSEC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 9040}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Duration MSEC", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": false, "data_type": "NUMBER", "facetable": false, "searchable": false, "table_name": "VIDEO_ASSETS", "column_name": "DURATION_MSEC", "data_length": 0, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.VIDEO.DURATION SMPTE", "name": "Duration SMPTE", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00:00:09:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Duration SMPTE", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": false, "data_type": "CHAR", "facetable": false, "searchable": false, "table_name": "VIDEO_ASSETS", "column_name": "DURATION_SMPTE", "data_length": 11, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.VIDEO.CLIP PARENT START SMPTE", "name": "Clip Parent Start Time SMPTE", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Clip Parent Start Time SMPTE", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "VIDEO_ASSETS", "column_name": "PARENT_START_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}], "has_multilingual_fields": false}, "mime_type": "video/mp4", "path_list": [{"parents": [{"id": "d4d9835db002b9992125246f2abb7117c99ab016", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "d4d9835db002b9992125246f2abb7117c99ab016", "sequence_number": 0}, {"id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "name": "MASTER CAMP FER ROCHER 12.01.2", "container_state": "NORMAL", "original_uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "sequence_number": 0}, {"id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "name": "01. DE - Rocher ", "container_state": "NORMAL", "original_uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "sequence_number": 0}, {"id": "091216b59cad7f1ea815164c26db27e350c54023", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "sequence_number": 0}, {"id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "name": "01. Rocher", "container_state": "NORMAL", "original_uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "sequence_number": 0}, {"id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "name": "01. Ferrero Rocher", "container_state": "NORMAL", "original_uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "sequence_number": 0}, {"id": "93b0968611de11160ed068afeb9930b9965bd5ff", "name": "03. Premium Chocolate", "container_state": "NORMAL", "original_uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "sequence_number": 0}, {"id": "4b05a895330aa2fb6046f59731aba5dd93858431", "name": "LOCADAPLOCCOMM - FER ROCHER 4", "container_state": "NORMAL", "original_uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "sequence_number": 0}, {"id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "name": "25-26", "container_state": "NORMAL", "original_uoi_id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "sequence_number": 0}, {"id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "name": "02. Campaign", "container_state": "NORMAL", "original_uoi_id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "sequence_number": 0}, {"id": "f31042cfc487f066486c46527c076b8ee6618ceb", "name": "01. Standard", "container_state": "NORMAL", "original_uoi_id": "f31042cfc487f066486c46527c076b8ee6618ceb", "sequence_number": 0}, {"id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "name": "02. Sweden", "container_state": "NORMAL", "original_uoi_id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "sequence_number": 0}, {"id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "name": "SCANDINAVIA", "container_state": "NORMAL", "original_uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "sequence_number": 0}, {"id": "f2649309eb916c5c25bb309e3db061042c3eecca", "name": "01. MC - Rocher", "container_state": "NORMAL", "original_uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "sequence_number": 0}, {"id": "091216b59cad7f1ea815164c26db27e350c54023", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "sequence_number": 0}, {"id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "name": "01. Rocher", "container_state": "NORMAL", "original_uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "sequence_number": 0}, {"id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "name": "01. Ferrero Rocher", "container_state": "NORMAL", "original_uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "sequence_number": 0}, {"id": "93b0968611de11160ed068afeb9930b9965bd5ff", "name": "03. Premium Chocolate", "container_state": "NORMAL", "original_uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "sequence_number": 0}], "complete": true, "sequence_number": 2, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "d4d9835db002b9992125246f2abb7117c99ab016", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "d4d9835db002b9992125246f2abb7117c99ab016", "sequence_number": 0}, {"id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "name": "MASTER CAMP FER ROCHER 12.01.2", "container_state": "NORMAL", "original_uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "sequence_number": 0}, {"id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "name": "01. DE - Rocher ", "container_state": "NORMAL", "original_uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "sequence_number": 0}, {"id": "bfbc248a12a4bf0382406620f0d9ec41ff42e35e", "name": "01. Ferrero Rocher", "container_state": "NORMAL", "original_uoi_id": "bfbc248a12a4bf0382406620f0d9ec41ff42e35e", "sequence_number": 0}, {"id": "3d7debea6815ae46c9598191b1c645007666292a", "name": "03 . Premium Chocolate", "container_state": "NORMAL", "original_uoi_id": "3d7debea6815ae46c9598191b1c645007666292a", "sequence_number": 0}, {"id": "c0bb10be2b8f96ee4d27a2dfb7e0d03de68cf114", "name": "DE", "container_state": "NORMAL", "original_uoi_id": "c0bb10be2b8f96ee4d27a2dfb7e0d03de68cf114", "sequence_number": 0}, {"id": "b124e1ed196028bdd0e2c093e28078ca8d9ad462", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "b124e1ed196028bdd0e2c093e28078ca8d9ad462", "sequence_number": 0}, {"id": "68ce80e8c8a30badb82dabfd823886a6fa6fe309", "name": "Y - Geography", "container_state": "NORMAL", "original_uoi_id": "68ce80e8c8a30badb82dabfd823886a6fa6fe309", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "sequence_number": 0}, {"id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "name": "Read Only", "container_state": "NORMAL", "original_uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "sequence_number": 0}, {"id": "23b155c32d5c6142914b41458234c100812bbec8", "name": "Oliver", "container_state": "NORMAL", "original_uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "sequence_number": 0}, {"id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "name": "Z - Exchange", "container_state": "NORMAL", "original_uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "sequence_number": 0}], "complete": true, "sequence_number": 2, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}], "creator_id": "1003", "asset_state": "NORMAL", "checked_out": false, "folder_path": "", "content_size": 3080691, "content_type": "VIDEO", "content_state": "NORMAL", "date_imported": "2026-01-14T14:23:41.74+01:00", "import_job_id": 225736, "streaming_url": "https://ppr.dam.ferrero.com/video/data/repository/original/vol0/227/0519db2862ae6ca92d8c1c366647880e178494ac_proxy.mp4", "subscribed_to": false, "collection_ids": [], "latest_version": true, "legacy_model_id": 116, "content_editable": true, "content_sub_type": "WHOLE", "import_user_name": "bizAdmin", "date_last_updated": "2026-01-14T14:28:02.513+01:00", "metadata_model_id": "ECOMMERCE", "original_asset_id": "6341dedf8117677336cb66fa9a7ce94c4c2d10d1", "rendition_content": {"preview_content": {"id": "38b08a5df7d408745c122ee7df0675ffbb74258b", "url": "/otmmapi/v6/renditions/38b08a5df7d408745c122ee7df0675ffbb74258b", "name": "kinder-joy_videoE2E.mp4", "width": 640, "height": 360, "mime_type": "video/mp4", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "PREVIEW", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\227\\\\0519db2862ae6ca92d8c1c366647880e178494ac_proxy.mp4", "content_size": 1177223, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "thumbnail_content": {"id": "1b785415362dd9a5f56e632d76bb7492c88c50c8", "url": "/otmmapi/v6/renditions/1b785415362dd9a5f56e632d76bb7492c88c50c8", "name": "1b785415362dd9a5f56e632d76bb7492c88c50c8.jpg", "width": 500, "height": 282, "mime_type": "image/jpeg", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "THUMBNAIL", "content_path": "data\\\\repository\\\\thumb\\\\vol0\\\\201\\\\1b785415362dd9a5f56e632d76bb7492c88c50c8_1b785415362dd9a5f56e632d76bb7492c88c50c8.jpg", "content_size": 13491, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "video_rollover_content": {"id": "996b4cc7451dfd5ed970534d0c69a34c3d0f87b5", "url": "/otmmapi/v6/renditions/996b4cc7451dfd5ed970534d0c69a34c3d0f87b5", "name": "kinder-joy_videoE2E.GIF", "width": 500, "height": 282, "mime_type": "image/gif", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "ROLLOVER", "content_path": "data\\\\repository\\\\rollover\\\\vol0\\\\16\\\\996b4cc7451dfd5ed970534d0c69a34c3d0f87b5_rollover.gif", "content_size": 4110720, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_content_info": {"master_content": {"id": "cbeb3d5f63f41cd6ff573003da1acaf7889e7de1", "url": "/otmmapi/v6/renditions/cbeb3d5f63f41cd6ff573003da1acaf7889e7de1", "name": "kinder-joy_videoE2E.mp4", "width": -1, "height": -1, "mime_type": "video/mp4", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\227\\\\kinder-joy_videoE2E_cbeb3d5f63f41cd6ff573003da1acaf7889e7de1.mp4", "content_size": 3080691, "unit_of_size": "BYTES", "content_checksum": "b36d1e9f85efe2c69693dde123d6c3b2", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "supporting_content": [{"id": "0519db2862ae6ca92d8c1c366647880e178494ac", "url": "/otmmapi/v6/renditions/0519db2862ae6ca92d8c1c366647880e178494ac", "name": "kinder-joy_videoE2E.mp4", "width": 640, "height": 360, "mime_type": "video/mp4", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "SUPPORTING", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\227\\\\0519db2862ae6ca92d8c1c366647880e178494ac_proxy.mp4", "content_size": 1177223, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}]}, "asset_state_user_id": "1003", "master_content_info": {"id": "cbeb3d5f63f41cd6ff573003da1acaf7889e7de1", "url": "/otmmapi/v6/renditions/cbeb3d5f63f41cd6ff573003da1acaf7889e7de1", "name": "kinder-joy_videoE2E.mp4", "width": -1, "height": -1, "mime_type": "video/mp4", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\227\\\\kinder-joy_videoE2E_cbeb3d5f63f41cd6ff573003da1acaf7889e7de1.mp4", "content_size": 3080691, "unit_of_size": "BYTES", "content_checksum": "b36d1e9f85efe2c69693dde123d6c3b2", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "delivery_service_url": "https://ppr.dam.ferrero.com/adaptivemedia/rendition?id=6341dedf8117677336cb66fa9a7ce94c4c2d10d1", "product_associations": false, "security_policy_list": [{"id": 5467, "name": "Marketing Viewer", "status": "NORMAL", "created_by": "1003", "create_date": "2023-10-06T16:52:07.297+02:00", "description": "Marketing Viewer", "ownership_type": "PUBLIC"}, {"id": 9525, "name": "Premium Chocolate Local DE Editable Ferrero Rocher", "status": "NORMAL", "created_by": "1003", "create_date": "2024-11-26T10:08:39.973+01:00", "description": "Premium Chocolate Local DE Editable Ferrero Rocher", "ownership_type": "PUBLIC"}], "thumbnail_content_id": "1b785415362dd9a5f56e632d76bb7492c88c50c8", "content_state_user_id": "1003", "content_state_user_name": "OTMM BusinessAdmin", "asset_lock_state_user_id": "1003", "metadata_state_user_name": "OTMM BusinessAdmin", "progressive_download_url": "https://ppr.dam.ferrero.com/video/data/repository/original/vol0/227/0519db2862ae6ca92d8c1c366647880e178494ac_proxy.mp4", "access_control_descriptor": {"permissions_map": {"entry": [{"key": "text.securityPolicy.permission.Custom04Permission", "value": true}, {"key": "text.securityPolicy.permission.ContentEditPermission", "value": true}, {"key": "text.securityPolicy.permission.AssetViewPermission", "value": true}, {"key": "text.securityPolicy.permission.ProjectViewPermission", "value": true}, {"key": "text.securityPolicy.permission.MembershipEditPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom03Permission", "value": true}, {"key": "text.securityPolicy.permission.MetaDataEditPermission", "value": true}, {"key": "text.securityPolicy.permission.EditParentsPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom02Permission", "value": true}, {"key": "text.securityPolicy.permission.ExportPermission", "value": true}, {"key": "text.securityPolicy.permission.SummaryViewPermission", "value": true}, {"key": "text.securityPolicy.permission.PreviewViewPermission", "value": true}, {"key": "text.securityPolicy.permission.SubscribePermission", "value": true}, {"key": "text.securityPolicy.permission.DeleteAssetPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom01Permission", "value": true}]}}, "content_lock_state_user_id": "1003", "asset_state_last_update_date": "2026-01-14T14:28:02.513+01:00", "content_lock_state_user_name": "bizAdmin", "metadata_lock_state_user_name": "bizAdmin", "content_state_last_update_date": "2026-01-14T14:23:41.99+01:00", "inherited_metadata_collections": [{"container_id": "d4d9835db002b9992125246f2abb7117c99ab016", "container_name": "05. Final Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "d4d9835db002b9992125246f2abb7117c99ab016", "originator_id": "d4d9835db002b9992125246f2abb7117c99ab016", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "05. Final Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "container_name": "MASTER CAMP FER ROCHER 12.01.2", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "MASTER CAMP FER ROCHER 12.01.2"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000783"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "MASTER_CAMP_FER_ROC_CQ_LG_DE_PRE_0000783"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local comm on global brands"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Master Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Master Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2026/2027"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "B1"}, "display_value": "Master campaign ready for re-mastering", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ADDITIONALAPPROVER", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.LICENSING", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "d0ef653291e269a7d1ddf0ebfedd1c6ad70b1c59"}, "metadata_element": {"id": "FERRERO.FIELD.LICENSING", "name": "Campaign License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "LICENSING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}}]}, {"container_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "container_name": "01. DE - Rocher ", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "bb01cf85444107f22341d2b88421f0cbaade0bf9"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E006"}, "display_value": "GERMANY", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Local DE Editable Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Premium Chocolate Local DE Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "8f497ce53d23899c7c09aa5a7ca69c9f55c3a62d"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E64"}, "display_value": "GERMANY", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "ca70a6d55e4277ecbef2a01a593c614501cbcf74"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "3e9d669ab1047383d0416ba40af75744148c94c8"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0e241fc386dcd91baa31a409e297169fe4a352c2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "2e3e0f2be0e487b540d9b63cb8c0e9ed9c6b1bb6"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "359c98154f230a60acc6b4eb048e129411d7a778"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "b3698893fc223e8371f4e4c0d560d0536c724a09"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "e92f9f10c0c29dda8261218c2c72a0baa66472f2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "15dff42c3b196ba3ae5b3c2ea33f00e347e6f654"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Extended Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0ae044cd9dddf86cd9406c9edc3996b18c430be0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "name": "AMMC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AMMC", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LOCAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "7806fed6127b50c21f6b03e1f7b63f3dedc1e8d1"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "RMMC", "values": [{"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "4c8a2d6e178638bfacfeaf3f7f6f1000304693a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "name": "Product Asset Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Product Asset Approval Ferrero Rocher Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Asset Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCT_ASSET_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local comm on global brands"}, "display_value": "Local comm on global brands", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "5a1ae26558efdc03336c0df838dd9e7c2a51c687"}, "metadata_element": {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "name": "Market Unit", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market Unit", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETUNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "MARKET_UNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "091216b59cad7f1ea815164c26db27e350c54023", "container_name": "EU", "container_type_id": "GEOGRAPHYLOCAL", "container_type_name": "L4 - GEOGRAPHY LOCAL", "inherited_metadata_values": [{"id": "FERRERO.MARKET.FOLDER.GLOBAL", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "4c4d4bf36bf8b1ace55f990e78d6332a9cb20990"}, "metadata_element": {"id": "FERRERO.MARKET.FOLDER.GLOBAL", "name": "Global/Local (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "LOCAL"}, "display_value": "Local", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local (Marketing)", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "GLOBALLOCAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_AREA", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "3dc200c993ab8263952dc6da1498026f615f45dd"}, "metadata_element": {"id": "MARKETING_AREA", "name": "AREA", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E010"}, "display_value": "EUROPE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "AREA", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "AREA", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "AREA", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "dc7749c3e113ec9e0b9e9a3840ea55673ca5e49f"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "f2d658a3829c2ea158ae70a4b4e7928bcf88f8e2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "972d0258a82de85672bd84d8af68cdb67ad3d3ca"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "1212505ad3fe4c9d7458568f3d95aeb4c4e5c37e"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "9d1dfdef55ff7a3eb03552988ddf729c7a0f5107"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "54f006eeb366121a29ee98da33d437615dcd34e0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "1fd8802010e30d44cebb2f3eb090b12ac550f97d"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "8b6e1d8f7dc3c4671cfc11a2914d838ca3ee3f3b"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "be0dc9a87262ee7fd165237b531ba3b7aa93a260"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "2f99f0f0f9e43fb34df9222c8b73a86fb78e473e"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "container_name": "01. Rocher", "container_type_id": "GLOBALBRAND", "container_type_name": "L3 - BRAND", "inherited_metadata_values": [{"id": "FERRERO.TABULAR.NEW.BRAND", "tabular": true, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "9bb1c183135f5240f09132aef59c4ea48c762381"}, "metadata_element": {"id": "FERRERO.TABULAR.NEW.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF04"}, "display_value": "ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND (Marketing)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF04"}, "display_value": "ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "BRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TABULAR_BRAND", "column_name": "BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.NEW.BRAND", "parent_table_name": "BRAND (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "tabular": true, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "a37b13c02cba799378211e17b73234a0d836f9b6"}, "metadata_element": {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "CQ"}, "display_value": "FERRERO ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND(HARMONIZED)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "CQ"}, "display_value": "FERRERO ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.HARMONIZEDBRAND", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_HARMONIZEDBRAND", "column_name": "HARMONIZEDBRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.HARMONIZEDBRAND", "parent_table_name": "BRAND(HARMONIZED)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "AGENCY.COLLABORATION", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "183d6e0957a9940f9b18ef44f46d957802b63397"}, "metadata_element": {"id": "AGENCY.COLLABORATION", "name": "Agency collaboration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency collaboration", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "AGENCY_COLLABORATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "AGENCY.SHARING", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "d0e2b725ddfdc452cc3ba750bbe8ec059c6b01ba"}, "metadata_element": {"id": "AGENCY.SHARING", "name": "Agency sharing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency sharing", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "AGENCY_SHARING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "CONTENT.SCALING.AGENCYNAME", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "f9dfa695cc5ef8cd3fafada4e44cfdaa1522d58a"}, "metadata_element": {"id": "CONTENT.SCALING.AGENCYNAME", "name": "Content Scaling agency name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Scaling agency name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENTSCALING_AGENCYNAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "container_name": "01. Ferrero Rocher", "container_type_id": "GLOBALSUBCATEGORY", "container_type_name": "L2 - SUBCATEGORY", "inherited_metadata_values": [{"id": "MARKETING_SUBCATEGORY", "tabular": false, "value_id": {"uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "originator_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "inherited_field_id": "3000ad591e09b5c75f85fc2ccbb9ebeb31b3ab78"}, "metadata_element": {"id": "MARKETING_SUBCATEGORY", "name": "SUBCATEGORY", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Mart-Ferrero-Rocher"}, "display_value": "Ferrero Rocher", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "SUBCATEGORY", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "SUBCATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "SUBCATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "tabular": true, "value_id": {"uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "originator_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "inherited_field_id": "2c751ce760d88c0e271925ea5149348106944bfa"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Subcategory Owner", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_SUBCATEGORY_OWNER_TM", "column_name": "SUBCATEGORY_OWNER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "parent_table_name": "Subcategory Owner", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "container_name": "03. Premium Chocolate", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "originator_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E06"}, "display_value": "PREMIUM CHOCOLATE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "originator_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final Approver BPS ", "values": [{"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "container_name": "00. Master Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "originator_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00. Master Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "container_name": "LOCADAPLOCCOMM - FER ROCHER 4", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "LOCADAPLOCCOMM - FER ROCHER 4"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000794"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "LOCADAPLOCCOMM_-__CQ_LAL_MLT_PRE_0000794"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local adaptation of local comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Master Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000783"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Master Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "DK"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "DK"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "SE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "FI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "NO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "IS"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "GL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2025/2026"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2797"}, "display_value": "Owner, Asset (AssetownerLoG, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2797"}, "display_value": "Owner, Asset (AssetownerLoG, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2797"}, "display_value": "Owner, Asset (AssetownerLoG, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2797"}, "display_value": "Owner, Asset (AssetownerLoG, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "A2"}, "display_value": "Selected Master Assets sent to Agency", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ADDITIONALAPPROVER", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.LICENSING", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "d0ef653291e269a7d1ddf0ebfedd1c6ad70b1c59"}, "metadata_element": {"id": "FERRERO.FIELD.LICENSING", "name": "Campaign License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "LICENSING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}}]}, {"container_id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "container_name": "25-26", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "originator_id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "25-26"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "container_name": "02. Campaign", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "originator_id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "02. Campaign"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "f31042cfc487f066486c46527c076b8ee6618ceb", "container_name": "01. Standard", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "f31042cfc487f066486c46527c076b8ee6618ceb", "originator_id": "f31042cfc487f066486c46527c076b8ee6618ceb", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "01. Standard"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "container_name": "02. Sweden", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "originator_id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "02. Sweden"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "container_name": "SCANDINAVIA", "container_type_id": "GLOBALMARKETUNIT", "container_type_name": "L6 - MARKET UNIT", "inherited_metadata_values": [{"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "24a6615bcce9adc5a098c76c29b8e8baba61a9a3"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E22"}, "display_value": "SCANDINAVIA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "13063087b81ea172db42e69ed8e8fa013cd5bfe0"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Local SCANDINAVIA Editable Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "bf49ba2a40d0d0dccee4d5de7381659b106dd89a"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Premium Chocolate Local SCANDINAVIA Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "8e4d311466783d8215a38b08bee3cb2b3bfcf40f"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "9e88b5726590ab30642999a28a301e3fbcebc762"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "name": "Published Security Policy - Restricted Visibility", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Security Policy - Restricted Visibility", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_VISIBILITY_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "3c0070e420882e3e18f6097811cb60a67239003b"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local SCANDINAVIA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "7f3c1933b61e900457ea6e2aab750303882873d4"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "b0c960759e48c0fcdcb650417179a614da95e866"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Local SCANDINAVIA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "6f603fcc63415e266dc35cf2314d31357a2966bf"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "3c12728b06ecfafeeb74482ea7b7296b180765f9"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "dc9b8ffa0591a1b2956c07fa5dc10ff477c84f4e"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "495fa4f08769a021cfa907dfb7a903fade9bd19a"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "e3b647e172a89e1e7cbdd2964faff1bca8dcf520"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "6870cca056b54cd400a9fbd4fe75513e69cedcdd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "RMMC", "values": [{"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "container_name": "01. MC - Rocher", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "bb01cf85444107f22341d2b88421f0cbaade0bf9"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E023"}, "display_value": "MULTI COUNTRY EUROPE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "8f497ce53d23899c7c09aa5a7ca69c9f55c3a62d"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E22"}, "display_value": "SCANDINAVIA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "ca70a6d55e4277ecbef2a01a593c614501cbcf74"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "3e9d669ab1047383d0416ba40af75744148c94c8"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "0e241fc386dcd91baa31a409e297169fe4a352c2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "2e3e0f2be0e487b540d9b63cb8c0e9ed9c6b1bb6"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "359c98154f230a60acc6b4eb048e129411d7a778"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "b3698893fc223e8371f4e4c0d560d0536c724a09"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "e92f9f10c0c29dda8261218c2c72a0baa66472f2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "15dff42c3b196ba3ae5b3c2ea33f00e347e6f654"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "0ae044cd9dddf86cd9406c9edc3996b18c430be0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "name": "AMMC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AMMC", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LOCAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "7806fed6127b50c21f6b03e1f7b63f3dedc1e8d1"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "RMMC", "values": [{"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "4c8a2d6e178638bfacfeaf3f7f6f1000304693a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "name": "Product Asset Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Asset Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCT_ASSET_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of local comm"}, "display_value": "Local adaptation of local comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of local comm"}, "display_value": "Local adaptation of local comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "5a1ae26558efdc03336c0df838dd9e7c2a51c687"}, "metadata_element": {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "name": "Market Unit", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market Unit", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETUNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "MARKET_UNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "container_name": "Read Only", "container_type_id": "L3 - Agency Structure", "container_type_name": "L3 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "55530f721f18c847e35d7c828edf53461b5014b0"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "330bb6f68316aab5c45f9fe34e047cce573c67cc"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "name": "Agency Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "AGENCY_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "e30e90d694f9935d4c15c4c78891beed8853a272"}, "metadata_element": {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "name": "Published Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "PUBLISHED_ASSET_SP_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "23b155c32d5c6142914b41458234c100812bbec8", "container_name": "Oliver", "container_type_id": "L2 - Agency Structure", "container_type_name": "L2 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.AGENCY", "tabular": false, "value_id": {"uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "originator_id": "23b155c32d5c6142914b41458234c100812bbec8", "inherited_field_id": "48fcbc397986aca5bb8722a95197dd0a46f19b4e"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_AGENCY", "column_name": "AGENCY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "container_name": "Z - Exchange", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "YY"}, "display_value": "AGENCIES", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Final Approver BPS ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}], "asset_lock_state_last_update_date": "2026-01-14T14:28:20.48+01:00", "content_lock_state_last_update_date": "2026-01-14T14:23:42.103+01:00"}, "language_code": null, "language_name": null, "subject_title": null, "file_extension": ".mp4", "asset_type_name": null, "file_size_bytes": null, "duration_seconds": null, "upload_directory": "d4d9835db002b9992125246f2abb7117c99ab016", "local_campaign_id": null, "original_filename": "kinder-joy_videoE2E", "global_master_folder_id": null, "global_master_campaign_id": null} 2026-01-16 20:54:56.82303 \N \. -- -- Data for Name: campaign_status; Type: TABLE DATA; Schema: public; Owner: ferrero_user -- COPY public.campaign_status (id, campaign_id, campaign_number, campaign_name, live_campaign, status, webhook_sent, webhook_sent_at, created_at, updated_at) FROM stdin; 2 0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b UNKNOWN CONTENT SCALING 12345 NO A4 t 2025-11-05 21:39:58.300784 2025-11-05 21:39:58.300743 2025-11-05 21:39:58.300743 3 0782f78ca6fe95281660f0299a8a28c526628c95 C000000551 CONTENT SCALING OLIVER TEST 3 YES A2 t 2025-11-05 22:14:29.206023 2025-11-05 22:14:29.205999 2025-11-05 22:14:29.205999 4 77ca865e74c977c46b0244869dfdc03cb053acf3 C000000553 CONTENT SCALING KINDER JOY NO A4 t 2025-11-05 22:34:11.940898 2025-11-05 22:34:11.941067 2025-11-05 22:34:11.941067 5 847c0ede25c32edd97546221fe54fb392431848d C000000599 NUTELLA XMAS - PL ADAPTATION 3 YES A2 f \N 2025-11-21 03:23:42.654623 2025-11-21 03:23:42.654623 7 0fc8741c8e8d67a216047c6f34661753348d8565 C000000554 CONTENT SCALING KINDER JOY 2 NO A4 t 2025-11-21 03:34:17.323255 2025-11-21 03:34:17.322855 2025-11-21 03:34:17.322855 8 2d420ffe3b9236e33a19a909a13880d641846850 C000000600 XMAS - E2E LOCAL ADAPTATION PL NO A4 t 2025-11-21 03:34:19.890289 2025-11-21 03:34:19.890134 2025-11-21 03:34:19.890134 6 5f47100767fd6517861b6ee337ea83697edfa66a C000000565 CONTENT SCALING 12345 NO A4 t 2025-11-21 03:34:22.565094 2025-11-21 03:26:30.238286 2025-11-21 03:34:22.564701 10 f59d4d433cb55db39058836dd4c145062b8730a3 C000000566 CONTENT SCALING XX NO A4 t 2025-11-21 03:34:25.006487 2025-11-21 03:34:25.006115 2025-11-21 03:34:25.006115 11 4b05a895330aa2fb6046f59731aba5dd93858431 C000000794 LOCADAPLOCCOMM - FER ROCHER 4 YES A2 f \N 2026-01-16 20:41:31.701739 2026-01-16 20:41:31.701739 \. -- -- Data for Name: creativex_scores; Type: TABLE DATA; Schema: public; Owner: ferrero_user -- COPY public.creativex_scores (id, filename, box_file_id, creativex_id, creativex_url, quality_score, full_extraction_data, extracted_at, status, created_at, tracking_id) FROM stdin; 1 241022-Nutella-Noel-Brother-30s-MixWeb-MSB (1).mp4 2043306479381 6864255.0 https://app.creativex.com/audit/scorecards/32456797?include_matched_posts=false 80.0 {"data": {"brand": "Nutella", "market": "France", "channel": "Instagram Ads", "company": "Ferrero", "filename": "241022-Nutella-Noel-Brother-30s-MixWeb-MSB (1).mp4", "guidelines": [{"name": "Instagram Feed - Video", "status": null, "weightPercentage": 20.0}, {"name": "Brand Early", "status": null, "weightPercentage": 20.0}, {"name": "Branding (Overlaid)", "status": null, "weightPercentage": 20.0}, {"name": "Optimized for Sound Off", "status": null, "weightPercentage": 20.0}, {"name": "Simple Message", "status": null, "weightPercentage": 20.0}], "hypotheses": ["Optimal Length", "Sound On", "Supers Present"], "placements": ["Instagram - Feed"], "completedOn": "November 11, 2025", "creativeXId": {"id": 6864255.0, "url": "https://app.creativex.com/audit/scorecards/32456797?include_matched_posts=false"}, "submittedBy": "Ondrej Faltin", "preflightName": "Nutella test filename", "campaignObjective": "Unknown", "creativesTestedCount": 1.0, "ferreroCreativeQuality": {"status": "On Track", "percentage": 80.0}}, "run_id": null, "extraction_agent_id": "d7566082-d096-47fb-be65-7db5f3bdd8c6", "extraction_metadata": {"usage": {"num_output_tokens": 246, "num_document_tokens": 457, "num_pages_extracted": 2}, "field_metadata": {}}} 2025-11-11 21:29:45.906152 superseded 2025-11-11 21:29:45.906152 \N 2 241022-Nutella-Noel-Brother-30s-MixWeb-MSB (1).mp4 2043306479381 6864255.0 https://app.creativex.com/audit/scorecards/32456797?include_matched_posts=false 85.0 {"data": {"filename": "241022-Nutella-Noel-Brother-30s-MixWeb-MSB (1).mp4", "creativeXId": {"id": "6864255.0", "url": "https://app.creativex.com/audit/scorecards/32456797?include_matched_posts=false"}, "ferreroCreativeQuality": {"percentage": "85.0"}}} 2025-11-11 21:39:34.417087 superseded 2025-11-11 21:39:34.417087 \N 3 241022-Nutella-Noel-Brother-30s-MixWeb-MSB (1).mp4 2043324023677 6864255.0 https://app.creativex.com/audit/scorecards/32456797?include_matched_posts=false 80.0 {"data": {"brand": "Nutella", "market": "France", "channel": "Instagram Ads", "company": "Ferrero", "filename": "241022-Nutella-Noel-Brother-30s-MixWeb-MSB (1).mp4", "guidelines": [{"name": "Instagram Feed - Video", "status": null, "weightPercentage": 20.0}, {"name": "Brand Early", "status": null, "weightPercentage": 20.0}, {"name": "Branding (Overlaid)", "status": null, "weightPercentage": 20.0}, {"name": "Optimized for Sound Off", "status": null, "weightPercentage": 20.0}, {"name": "Simple Message", "status": null, "weightPercentage": 20.0}], "hypotheses": ["Optimal Length", "Sound On", "Supers Present"], "placements": ["Instagram - Feed"], "completedOn": "November 11, 2025", "creativeXId": {"id": 6864255.0, "url": "https://app.creativex.com/audit/scorecards/32456797?include_matched_posts=false"}, "submittedBy": "Ondrej Faltin", "preflightName": "Nutella test filename", "campaignObjective": "Unknown", "creativesTestedCount": 1.0, "ferreroCreativeQuality": {"status": "On Track", "percentage": 80.0}}, "run_id": null, "extraction_agent_id": "d7566082-d096-47fb-be65-7db5f3bdd8c6", "extraction_metadata": {"usage": {"num_output_tokens": 246, "num_document_tokens": 457, "num_pages_extracted": 2}, "field_metadata": {}}} 2025-11-11 21:40:35.642957 superseded 2025-11-11 21:40:35.642957 \N 4 241022-Nutella-Noel-Brother-30s-MixWeb-MSB (1).mp4 2043330056892 6864255 https://app.creativex.com/audit/scorecards/32456797?include_matched_posts=false 80 {"data": {"brand": "Nutella", "market": "France", "channel": "Instagram Ads", "company": "Ferrero", "filename": "241022-Nutella-Noel-Brother-30s-MixWeb-MSB (1).mp4", "guidelines": [{"name": "Aspect Ratio", "status": null, "weightPercentage": 0.0}, {"name": "Instagram Feed - Video", "status": null, "weightPercentage": 20.0}, {"name": "Brand Early", "status": null, "weightPercentage": 20.0}, {"name": "Branding (Overlaid)", "status": null, "weightPercentage": 20.0}, {"name": "Optimized for Sound Off", "status": null, "weightPercentage": 20.0}, {"name": "Simple Message", "status": null, "weightPercentage": 20.0}], "hypotheses": ["Optimal Length", "Sound On", "Supers Present"], "placements": ["Instagram - Feed"], "completedOn": "November 11, 2025", "creativeXId": {"id": 6864255.0, "url": "https://app.creativex.com/audit/scorecards/32456797?include_matched_posts=false"}, "submittedBy": "Ondrej Faltin", "preflightName": "Nutella test filename", "campaignObjective": "Unknown", "creativesTestedCount": 1.0, "ferreroCreativeQuality": {"status": "On Track", "percentage": 80.0}}, "run_id": null, "extraction_agent_id": "d7566082-d096-47fb-be65-7db5f3bdd8c6", "extraction_metadata": {"usage": {"num_output_tokens": 260, "num_document_tokens": 457, "num_pages_extracted": 2}, "field_metadata": {}}} 2025-11-11 21:54:08.736087 superseded 2025-11-11 21:54:08.736087 \N 5 241022-Nutella-Noel-Brother-30s-MixWeb-MSB (1).mp4 2043339829212 6864255 https://app.creativex.com/audit/scorecards/32456797?include_matched_posts=false 80 {"data": {"brand": "Nutella", "market": "France", "channel": "Instagram Ads", "company": "Ferrero", "filename": "241022-Nutella-Noel-Brother-30s-MixWeb-MSB (1).mp4", "guidelines": [{"name": "Instagram Feed - Video", "status": null, "weightPercentage": 20.0}, {"name": "Brand Early", "status": null, "weightPercentage": 20.0}, {"name": "Branding (Overlaid)", "status": null, "weightPercentage": 20.0}, {"name": "Optimized for Sound Off", "status": null, "weightPercentage": 20.0}, {"name": "Simple Message", "status": null, "weightPercentage": 20.0}], "hypotheses": ["Optimal Length", "Sound On", "Supers Present"], "placements": ["Instagram - Feed"], "completedOn": "November 11, 2025", "creativeXId": {"id": 6864255.0, "url": "https://app.creativex.com/audit/scorecards/32456797?include_matched_posts=false"}, "submittedBy": "Ondrej Faltin", "preflightName": "Nutella test filename", "campaignObjective": "Unknown", "creativesTestedCount": 1.0, "ferreroCreativeQuality": {"status": "On Track", "percentage": 80.0}}, "run_id": null, "extraction_agent_id": "d7566082-d096-47fb-be65-7db5f3bdd8c6", "extraction_metadata": {"usage": {"num_output_tokens": 246, "num_document_tokens": 457, "num_pages_extracted": 2}, "field_metadata": {}}} 2025-11-11 22:06:26.635847 active 2025-11-11 22:06:26.635847 \N 8 6487512_NUT_PL_pl_TEST-E2E_EHI_1x1_7xXgKp.png test_box_id 6864308 https://app.creativex.com/audit/scorecards/32456797?include_matched_posts=false 71 {"data": {"brand": "Nutella", "market": "France", "channel": "Instagram Ads", "company": "Ferrero", "filename": "241022-Nutella-Noel-Brother-30s-MixWeb-MSB (1).mp4", "guidelines": [{"name": "Instagram Feed - Video", "status": null, "weightPercentage": 20.0}, {"name": "Brand Early", "status": null, "weightPercentage": 20.0}, {"name": "Branding (Overlaid)", "status": null, "weightPercentage": 20.0}, {"name": "Optimized for Sound Off", "status": null, "weightPercentage": 20.0}, {"name": "Simple Message", "status": null, "weightPercentage": 20.0}], "hypotheses": ["Optimal Length", "Sound On", "Supers Present"], "placements": ["Instagram - Feed"], "completedOn": "November 11, 2025", "creativeXId": {"id": 6864255.0, "url": "https://app.creativex.com/audit/scorecards/32456797?include_matched_posts=false"}, "submittedBy": "Ondrej Faltin", "preflightName": "Nutella test filename", "campaignObjective": "Unknown", "creativesTestedCount": 1.0, "ferreroCreativeQuality": {"status": "On Track", "percentage": 80.0}}, "run_id": null, "extraction_agent_id": "d7566082-d096-47fb-be65-7db5f3bdd8c6", "extraction_metadata": {"usage": {"num_output_tokens": 246, "num_document_tokens": 457, "num_pages_extracted": 2}, "field_metadata": {}}} 2025-11-13 17:29:37.590545 active 2025-11-13 17:29:37.590545 \N 9 nutella_pbased.jpg box_master_12345 6864255 https://app.creativex.com/audit/scorecards/test-master 85 {"data": {"url": "https://app.creativex.com/audit/scorecards/test-master", "score": "85"}, "master_metadata": true} 2025-11-13 18:55:44.32401 master-cx-score 2025-11-13 18:55:44.32401 7xXgKp 10 2114262_NUT_XMAS_MLF_5x4_PL_pl_09Dux1.jpeg 000000000 12345 https://creativex.com/123 85 {"data": {"channel": "Google Ads", "filename": "2114262_NUT_XMAS_MLF_5x4_PL_pl_09Dux1.jpeg", "placements": [], "creativeXId": {"id": 12345, "url": "https://creativex.com/123"}, "ferreroCreativeQuality": {"percentage": 85}, "ferrero_mapped_platform": "Google"}} 2025-11-24 19:18:17.377958 superseded 2025-11-24 19:18:17.377958 09Dux1 11 2114262_NUT_XMAS_MLF_5x4_PL_pl_09Dux1.jpeg 000000000 12345 https://creativex.com/123 85 {"data": {"channel": "Multiple", "filename": "2114262_NUT_XMAS_MLF_5x4_PL_pl_09Dux1.jpeg", "placements": ["Google", "Instagram"], "creativeXId": {"id": 12345, "url": "https://creativex.com/123"}, "ferreroCreativeQuality": {"percentage": 85}, "ferrero_mapped_platforms": ["Google Ads", "Instagram"]}} 2025-11-24 19:29:31.330878 active 2025-11-24 19:29:31.330878 09Dux1 \. -- -- Data for Name: derivative_assets; Type: TABLE DATA; Schema: public; Owner: ferrero_user -- COPY public.derivative_assets (id, tracking_id, master_asset_id, derivative_filename, file_extension, dam_asset_id, upload_status, upload_error, uploaded_by, uploaded_at, status, created_at, updated_at) FROM stdin; 1 pOiJ9s \N ROC_DE_he_TEST-UPLOAD_EBS_001_MST_1S_1x1 .jpg \N pending \N \N \N active 2025-11-06 00:14:42.237878 2025-11-06 00:14:42.237878 2 ij0ygz \N ROC_PPRTEST-F2_EHI_4x5_DE_de .jpg 226337 pending \N \N \N active 2026-01-19 15:01:42.315935 2026-01-19 15:01:42.315935 3 WcErVe \N ROC_PPRTEST_EHI_4x5_DE_de .jpg 226338 pending \N \N \N active 2026-01-19 15:01:45.581239 2026-01-19 15:01:45.581239 4 ij0ygz \N ROC_PPRTEST-F2_EHI_4x5_DE_de .jpg 226345 pending \N \N \N active 2026-01-19 15:17:26.595775 2026-01-19 15:17:26.595775 5 WcErVe \N ROC_PPRTEST_EHI_4x5_DE_de .jpg 226346 pending \N \N \N active 2026-01-19 15:17:29.682813 2026-01-19 15:17:29.682813 6 ij0ygz \N ROC_PPRTEST-F2_EHI_4x5_DE_de .jpg 226347 pending \N \N \N active 2026-01-19 15:21:31.090688 2026-01-19 15:21:31.090688 7 WcErVe \N ROC_PPRTEST_EHI_4x5_DE_de .jpg 226348 pending \N \N \N active 2026-01-19 15:21:34.461497 2026-01-19 15:21:34.461497 8 ij0ygz \N ROC_PPRTEST-F2_EHI_4x5_DE_de .jpg 226370 pending \N \N \N active 2026-01-19 15:52:02.285598 2026-01-19 15:52:02.285598 9 WcErVe \N ROC_PPRTEST_EHI_4x5_DE_de .jpg 226371 pending \N \N \N active 2026-01-19 15:52:05.547146 2026-01-19 15:52:05.547146 10 ij0ygz \N ROC_PPRTEST-F2_EHI_4x5_DE_de .jpg 226390 pending \N \N \N active 2026-01-19 21:27:11.596129 2026-01-19 21:27:11.596129 11 WcErVe \N ROC_PPRTEST_EHI_4x5_DE_de .jpg 226391 pending \N \N \N active 2026-01-19 21:27:14.929931 2026-01-19 21:27:14.929931 \. -- -- Data for Name: master_assets; Type: TABLE DATA; Schema: public; Owner: ferrero_user -- COPY public.master_assets (id, tracking_id, opentext_id, original_filename, file_extension, file_size_bytes, mime_type, brand_code, brand_name, country_code, country_name, language_code, language_name, subject_title, asset_type, asset_type_name, duration_seconds, aspect_ratio, width_px, height_px, global_master_campaign_id, global_master_folder_id, local_campaign_id, upload_directory, description, full_metadata, tags, categories, status, is_deleted, deleted_at, ingested_by, ingested_at, created_at, updated_at) FROM stdin; 1 bvSGyd 747110b96dede761a445a3bf0c90f13bb38024fa nutella pbased .jpg \N image/jpeg \N \N \N \N \N \N \N \N \N \N \N \N \N C000000068 0782f78ca6fe95281660f0299a8a28c526628c95 C000000551 89fa66f966144467721d6829db4d88d25ac026b1 Box File ID: 2037680070278\nBox URL: https://app.box.com/file/2037680070278\nDAM Asset ID: 747110b96dede761a445a3bf0c90f13bb38024fa {"name": "nutella pbased.jpg", "links": {"links": [], "source_id": "747110b96dede761a445a3bf0c90f13bb38024fa"}, "locked": false, "deleted": false, "expired": false, "version": 1, "asset_id": "747110b96dede761a445a3bf0c90f13bb38024fa", "metadata": {"id": "ECOMMERCE", "name": "Marketing Asset", "type": "com.artesia.metadata.MetadataModel", "legacy_id": 116, "metadata_element_list": [{"id": "FERRERO.CATEGORY.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200054, "metadata_element_list": []}, {"id": "FERRER.CATEGORY.ASSET_INFO", "name": "Asset Info", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200022, "metadata_element_list": [{"id": "FERRERO.FIELD.FISCAL YEAR", "name": "Release Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2024/2025"}, "display_value": "2024/2025", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Release Fiscal Year", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_DOMAIN_FISCAL_YEAR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "FISCAL__YEAR", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "name": "Main Languages", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1210, "metadata_element_list": [{"id": "MAIN_LANGUAGES", "name": "MAIN LANGUAGES", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "MAIN LANGUAGES", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MAIN LAGUAGES_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MAIN_LANGUAGE_TABLE", "column_name": "MAIN_LANGUAGE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "parent_table_name": "Main Languages", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.ASSET DESCRIPTION", "name": "Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Description", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "DESCR", "data_length": 249, "description": "Descriptive information", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.FLAVOUR", "name": "Flavour", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Flavour", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.FLAVOUR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FLAVOUR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.SIZE", "name": "Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Size", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.SIZE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SIZE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1241, "metadata_element_list": [{"id": "FERRERO.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Compliance", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ASSETCOMPLIANCE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_COMPLIANCE", "column_name": "ASSET_COMPLIANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "parent_table_name": "Asset Compliance", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.TAG DETAILS", "name": "Tag Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 118, "metadata_element_list": [{"id": "ARTESIA.FIELD.TAG", "name": "Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "food", "field_value": {"type": "string", "value": "food"}, "display_value": "food", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Tag", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "food", "field_value": {"type": "string", "value": "food"}, "display_value": "food", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "fruit preserve", "field_value": {"type": "string", "value": "fruit preserve"}, "display_value": "fruit preserve", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "preserved food", "field_value": {"type": "string", "value": "preserved food"}, "display_value": "preserved food", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "condiment", "field_value": {"type": "string", "value": "condiment"}, "display_value": "condiment", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "mason jar", "field_value": {"type": "string", "value": "mason jar"}, "display_value": "mason jar", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "canning", "field_value": {"type": "string", "value": "canning"}, "display_value": "canning", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "food storage containers", "field_value": {"type": "string", "value": "food storage containers"}, "display_value": "food storage containers", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "sauces", "field_value": {"type": "string", "value": "sauces"}, "display_value": "sauces", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "lekvar", "field_value": {"type": "string", "value": "lekvar"}, "display_value": "lekvar", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "pickling", "field_value": {"type": "string", "value": "pickling"}, "display_value": "pickling", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "food storage", "field_value": {"type": "string", "value": "food storage"}, "display_value": "food storage", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "healthy", "field_value": {"type": "string", "value": "healthy"}, "display_value": "healthy", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "jam", "field_value": {"type": "string", "value": "jam"}, "display_value": "jam", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "ingredient", "field_value": {"type": "string", "value": "ingredient"}, "display_value": "ingredient", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "sauce", "field_value": {"type": "string", "value": "sauce"}, "display_value": "sauce", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "seasoning", "field_value": {"type": "string", "value": "seasoning"}, "display_value": "seasoning", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "bottle", "field_value": {"type": "string", "value": "bottle"}, "display_value": "bottle", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "honey", "field_value": {"type": "string", "value": "honey"}, "display_value": "honey", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.TAGS", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "OTMM_TAGS", "column_name": "TAG", "data_length": 80, "description": "Tag", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG CONFIDENCE", "name": "Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 89.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Confidence", "values": [{"value": {"type": "decimal", "value": 89.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 89.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 89.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 86.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 73.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 73.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 70.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 70.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 66.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 64.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 60.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 58.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 57.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 57.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 56.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 52.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 52.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 5.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Confidence", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG TYPE", "name": "Tag Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Tag Type", "values": [{"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "TAG_TYPE", "data_length": 10, "description": "Tag Type", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED BY", "name": "Associated By", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Associated By", "values": [{"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_BY", "data_length": 10, "description": "Associated By", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED DATE", "name": "Associated Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.607+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Associated Date", "values": [{"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.607+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.607+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.607+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.607+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.61+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.61+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.61+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.61+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.61+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.61+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.61+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.61+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.61+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.61+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.61+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.61+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.61+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.61+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_DATE", "data_length": 10, "description": "Associated Date", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.STATE", "name": "Global/Local", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "GLOBAL"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO_NOTNULL", "facetable": true, "searchable": true, "table_name": "FERRERO_IC_ASSET_DETAILS", "column_name": "ASSET_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.ASPECT RATIO", "name": "Aspect Ratio (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio (Marketing)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASPECT_RATIO", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASPECT_RATIO", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "name": "Tag (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1222, "metadata_element_list": [{"id": "MARKETING_TAG", "name": "Marketing Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Marketing Tag", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.DOMAIN.TAG", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TAG_MARKET", "column_name": "TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "parent_table_name": "Tag (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.TAGS", "name": "Auto-Generated Tags", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Auto-Generated Tags", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "AUTO_GENERATED_TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CERTIFIER", "name": "Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approver", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.MARKETING.FIELD.APPROVAL DATE", "name": "Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.CERTIFIER COMMENT", "name": "Approver Comment", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approver Comment", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "CERTIFIER_COMMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.LEGAL CERTIFER", "name": "Legal Certifier", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "User, Legal IA&CC (Local Legal IA&CC, active)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal Certifier", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "LEGAL_CERTIFIER_MARKETING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.LEGAL APPROVAL DATE", "name": "Legal Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-11-05T00:00:00+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.LEGAL COMMENT", "name": "Legal Comment", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": ", "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal Comment", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_COMMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CERTIFIER", "name": "IA&CC Certifier", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "User, Legal IA&CC (Local Legal IA&CC, active)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Certifier", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CC APPROVAL DATE", "name": "IA&CC Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-11-05T00:00:00+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CC COMMENT", "name": "IA&CC Comment", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "c8c5e34bc384c3dcc5fe06b91b6e0cfec2786f77=#SPLIT#43009b2ba8204f56f4b38a31a53aea735ade049f="}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Comment", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_COMMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "name": "Extended Approval", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1230, "metadata_element_list": [{"id": "FERRERO.FIELD.EXTENDED.APPROVAL", "name": "Extended Approval required by:", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended Approval required by:", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COMMENTS", "name": "Comment", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comment", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "COMMENTS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.DATE", "name": "Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USERS", "name": "User ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "User ID", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "USERS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXTENDED.JOBID", "name": "Extended JobID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended JobID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.MIGRATION.INDEX", "name": "Migration Index", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Migration Index", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MIGRATION.INDEX", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MIGRATION_INDEX", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "FERRERO_MARKET_MARKETING_CREATOR", "name": "Marketing Creator", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Marketing Creator", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.CREATOR", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MARKETING_CREATOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "ARTESIA.FIELD.IS LATEST VERSION", "name": "Is Latest Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Y"}, "display_value": "Yes", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Is Latest Version", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.YES_NO", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "IS_LATEST_VERSION", "data_length": 1, "description": "Is this the latest version? (Y/N)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET VERSION", "name": "Asset Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 1}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Version", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "INTEGER", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "VERSION", "data_length": 12, "description": "Version number of asset", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET_ID", "name": "Asset ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "747110b96dede761a445a3bf0c90f13bb38024fa"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset ID", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "LOGICAL_UOI_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.ECOMMERCE STATUS", "name": "Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "TO BE APPROVED"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Status", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "ASSET_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CREATOR", "name": "Uploaded by", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Uploaded by", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_USER_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.FIELD.CREATION DATE", "name": "Upload Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-10-31T16:39:58.037+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Upload Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_DT", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.ASSET NAME", "name": "Asset Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "nutella pbased.jpg"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Name", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "description": "Original name of master object", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.CONTENT TYPE", "name": "Content Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "BITMAP"}, "display_value": "Image", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Type", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.CONTENT_TYPES", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "CONTENT_TYPE", "data_length": 8, "description": "Content Type", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.MIME TYPE", "name": "File Extension", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "image/jpeg"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Extension", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_MIME_TYPE", "data_length": 80, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.FILE.SIZE", "name": "File Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "long", "value": 5000}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Size", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "LONG", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_SIZE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP RESOLUTION", "name": "Bitmap Resolution", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 72}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Resolution", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_RESOLUTION", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP WIDTH", "name": "Bitmap Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 203}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Width", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_WIDTH", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP HEIGHT", "name": "Bitmap Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 249}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Height", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_HEIGHT", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.VIDEO.BIT_RATE", "name": "Bitrate", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitrate", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "BIT_RATE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.EMBEDDED.FIELD.DURATION", "name": "Duration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Duration", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "DURATION_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.ASPECT RATIO", "name": "Aspect Ratio", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "ASPECT_RATIO", "data_length": 30, "displayable": false, "instructions": "ASPECT_RATIO", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME HEIGHT", "name": "Frame Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Height", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_HEIGHT", "data_length": 12, "displayable": true, "instructions": "FRAME_HEIGHT", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME WIDTH", "name": "Frame Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Width", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_WIDTH", "data_length": 12, "displayable": true, "instructions": "FRAME_WIDTH", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.ASPECT.RATIO.POC", "name": "Aspect Ratio(POC)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "4:5"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio(POC)", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASPECT_RATIO_TABLE", "column_name": "ASPECT_RATIO", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "PRODUCT.DETAILS", "name": "Product Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200029, "metadata_element_list": [{"id": "FERRERO.TABLE.EANCODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1208, "metadata_element_list": [{"id": "EAN_CODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "EAN CODE/ 77 CODE", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "EAN.CODE", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "EAN_CODE", "column_name": "EAN_CODE_DESCRIPTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "COUNTRY", "name": "COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "EAN_CODE", "column_name": "COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.SUB BRAND", "name": "Sub-Brands", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Sub-Brands", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.SUBBRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "SUB_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT WEIGHT", "name": "Product Weight", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Weight", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_WEIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.CONSUMER UNIT PACKAGING", "name": "Consumer Unit Packaging", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Consumer Unit Packaging", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PACK", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "CONSUMER_UNIT_PACKAGING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.4 DIGIT CODE", "name": "4 Digit Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "4 Digit Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "DIGITCODE", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERREO.ECOM.RETAILER_SPECIFIC_FIELD", "name": "Retailer Specific", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Retailer Specific", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "RETAILER_SPECIFIC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "cascading_group_id": "FERRERO.RETAILER.SPECIFIC", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY END PERIOD", "name": "Asset validity end period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity end period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_ENDING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT VIEW", "name": "Product View", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product View", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT VIEW", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_VIEW", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT ANGLE", "name": "Product Angle", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Angle", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT.ANGLE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_ANGLE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT STATE", "name": "Product State", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product State", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT STATE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PROMOTION ID", "name": "Promo ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Promo ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROMO_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200048, "metadata_element_list": []}, {"id": "FERRERO.FIELD.CREATIX", "name": "CreativeX", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200059, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.CREATIVEX", "name": "Confidence", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1245, "metadata_element_list": [{"id": "FERRERO.TAB.FIELD.CREATIVEX", "name": "Platform > Rating (%)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Platform > Rating (%)", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_CREATIVEX", "column_name": "CREATIVEX_NEW", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CREATIVEX", "parent_table_name": "Confidence", "cascading_group_id": "FERRERO.CREATIVEX.CHAR", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.CREATIVEX LINK", "name": "CreativeX Hyperlink", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "CreativeX Hyperlink", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_CREATIVEX", "column_name": "CREATIVE_LINK", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.IP_RIGHTS", "name": "IP Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200046, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.IPRIGHT", "name": "IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "IP Rights", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.IPRIGHTS", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IP_RIGHTS", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.BUYOUT", "name": "Touchpoint Scope", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Touchpoint Scope", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.TOTAL_BUYOUT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TOTAL_BUYOUT", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.FERRERO PROPERTY", "name": "Ferrero Property", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Ferrero Property", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.FERRERO_PROPERTY", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FERRERO_PROPERTY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200035, "metadata_element_list": []}, {"id": "FERRERO.MARKET.VID_STAT_RIGHT", "name": "Video & Static Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200047, "metadata_element_list": [{"id": "FERRERO.MARKET.VID_N_STAT", "name": "Video and Static Right", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Video and Static Right", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VID_AND_STAT_RIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.VID_STAT_TYPE", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1221, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.TYPE_VID", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Video & Static Right", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TYPE_VID_STAT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_MARKET_TYPE_VID_STAT", "column_name": "TYPE_OF_VIDEO_STATIC_RIGHT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.VID_STAT_TYPE", "parent_table_name": "Type of Video & Static Right", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKET.PROD_COMPANY", "name": "Production House", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Production House", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.PRODUCT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200050, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.LICENSIN", "name": "Licensing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Licensing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSING", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "cascading_group_id": "FERRERO.MARKET.CG.LICENSE", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.SPOT_DETAILS", "name": "Spot Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200049, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.SPOT_VERSION", "name": "Spot Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Version", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_VERSION", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_VERSION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.SPOT_TYPE", "name": "Spot Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_TYPE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.DIRECTOR_NAME", "name": "Director Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Director Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "DIRECTOR_NAME", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VIDEO_POST_PROD_COMPANY", "name": "Video Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VID_POST_PROD_CONTACT", "name": "Video Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_COMPANY", "name": "Audio Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_CONTACT", "name": "Audio Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.BROADCASTER.CODE", "name": "Broadcaster Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Broadcaster Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BROADCASTER_CODE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.TECHNICAL_VALIDATION", "name": "Technical Validation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Technical Validation", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TECHNICAL_VALIDATION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS", "name": "Media Analysis", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1002, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES COUNT", "name": "Faces Count", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Faces Count", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACECOUNT", "column_name": "COUNT", "data_length": 10, "description": "Faces Count", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "name": "Face Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 106, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME", "name": "Recognized Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME", "data_length": 2000, "description": "Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME CONFIDENCE", "name": "Recognized Name Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME_CONFIDENCE", "data_length": 10, "description": "Name Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE", "name": "Person Age", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE", "data_length": 10, "description": "Person Age", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE CONFIDENCE", "name": "Person Age Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Person Age Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_CONFIDENCE", "data_length": 10, "description": "Person Age Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER", "name": "Gender", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Gender", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.GENDER", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER", "data_length": 40, "description": "Gender", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER CONFIDENCE", "name": "Gender Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Gender Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER_CONFIDENCE", "data_length": 10, "description": "Gender Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.FACE COORDS", "name": "Face Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "FACE_COORDS", "data_length": 200, "description": "Face Coordinates like postion, height,width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE GROUP", "name": "Person Age Group", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age Group", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.AGE GROUP", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_GROUP", "data_length": 10, "description": "Person Age Group", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.ISBW", "name": "Is Black and White", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "false"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Is Black and White", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "ISBW", "data_length": 10, "description": "Is Black and White", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "name": "Image Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 110, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.IMAGE TYPE", "name": "Analysis Image Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "clip_art"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Analysis Image Type", "values": [{"value": {"type": "string", "value": "clip_art"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_IMAGE_TYPE", "column_name": "TYPE", "data_length": 100, "description": "Image Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "parent_table_name": "Image Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.DATE", "name": "Date: Media Analysis", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date: Media Analysis", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MEDIA_ANALYSIS_DATE", "data_length": 25, "description": "Date Media Analysis was done on the asset.", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false}]}, {"id": "HYBRIS.PRODUCT.INFO", "name": "PIM Item Reference", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200027, "metadata_element_list": [{"id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "name": "Hybris Item Reference", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1206, "metadata_element_list": [{"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ID", "name": "Hybris Item ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ID", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT TAG NAME", "name": "Hybris Assignment Label", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Assignment Label", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_TAG_NAME", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ATTRIBUTE NAME", "name": "Hybris Attribute Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Attribute Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ATTRIBUTE_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT CATALOG NAME", "name": "Hybris Catalog Mnemonic", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Catalog Mnemonic", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_CATALOG_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT PK", "name": "Hybris Item PK", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item PK", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_PK", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.SYSTEM ID", "name": "Hybris System ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris System ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "SYSTEM_ID", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.ASSIGNED", "name": "Assigned", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Assigned", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "ASSIGNED", "column_name": "ASSIGNED", "data_length": 38, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PIM TYPE", "name": "PIM Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "PIM Type", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_PIM_TYPE", "column_name": "PIM_TYPE", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS VIDEO", "name": "Media Analysis Video", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1003, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "name": "Labels", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 113, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.ID", "name": "Label Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "ID", "data_length": 40, "description": "Label Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.NAME", "name": "Label Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "NAME", "data_length": 40, "description": "Label Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.APPEARANCES", "name": "Label Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "APPEARANCES", "data_length": 0, "description": "Label Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "name": "Sentiments", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 114, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.ID", "name": "Sentiment Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "ID", "data_length": 40, "description": "Sentiment Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.NAME", "name": "Sentiment Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "NAME", "data_length": 40, "description": "Sentiment Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.APPEARANCES", "name": "Sentiment Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "APPEARANCES", "data_length": 0, "description": "Sentiment Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.SEEN.DURATION.RATIO", "name": "Sentiment Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Sentiment Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "name": "Keywords", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 115, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.ID", "name": "Keyword Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "ID", "data_length": 40, "description": "Keyword Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.NAME", "name": "Keyword Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "NAME", "data_length": 40, "description": "Keyword Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.APPEARANCES", "name": "Keyword Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Keyword Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "name": "Faces", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 111, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.ID", "name": "Face Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "ID", "data_length": 40, "description": "Face Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.NAME", "name": "Face Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "NAME", "data_length": 40, "description": "Face Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.TITLE", "name": "Face Title", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Title", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "TITLE", "data_length": 249, "description": "Face Title", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.DESCRIPTION", "name": "Face Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Face Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.APPEARANCES", "name": "Face Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "APPEARANCES", "data_length": 0, "description": "Face Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SPEAKER.FACE.ID", "name": "Video Speaker Object Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Speaker Object Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "THUMBNAIL_OBJECT_ID", "data_length": 40, "description": "Video Speaker Object Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.SEEN.DURATION.RATIO", "name": "Face Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "SEEN_DURATION_RATIO", "data_length": 20, "description": "Face Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "name": "Brands", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 112, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.ID", "name": "Video Brand Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "ID", "data_length": 40, "description": "Brand Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.NAME", "name": "Video Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Brand Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.DESCRIPTION", "name": "Video Brand Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Brand Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.WIKIURL", "name": "Video Brand Wiki URL", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Wiki URL", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "WIKIURL", "data_length": 200, "description": "Brand Wiki URL", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.APPEARANCES", "name": "Video Brand Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Brand Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.SEEN.DURATION.RATIO", "name": "Video Brand Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Brand Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "name": "Speeches", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 116, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.ID", "name": "SpeechText Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "SpeechText Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "ID", "data_length": 40, "description": "SpeechText Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXT", "name": "Speech Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Text", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXT", "data_length": 1000, "description": "Speech Text", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXTTYPE", "name": "Speech Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXTTYPE", "data_length": 40, "description": "Speech Type", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.START TIME", "name": "Speech Start Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Start Time", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "START_TIME", "data_length": 40, "description": "Speech Start Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.END TIME", "name": "Speech End Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech End Time", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "END_TIME", "data_length": 40, "description": "Speech End Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "name": "Speakers", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 122, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.ID", "name": "Speaker Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "ID", "data_length": 40, "description": "Speaker Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.NAME", "name": "Speaker Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "NAME", "data_length": 100, "description": "Speaker Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.APPEARANCES", "name": "Speaker Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "APPEARANCES", "data_length": 0, "description": "Speaker Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.FIELDGROUP.LOCALASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200057, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1239, "metadata_element_list": [{"id": "FERRERO.FIELD.COUNTRY", "name": "LOCAL COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "LOCAL COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USER", "name": "USER", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "USER", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_USER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.ASSOCIATION", "name": "TYPE OF ASSOCIATION", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "TYPE OF ASSOCIATION", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_ASSOCIATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.VALUE", "name": "VALUE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "VALUE", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_VALUE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}], "has_multilingual_fields": false}, "mime_type": "image/jpeg", "path_list": [{"parents": [{"id": "50e4b3e99601b02fda1162b949073a158c06a427", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "50e4b3e99601b02fda1162b949073a158c06a427", "sequence_number": 0}, {"id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "name": "CONTENT SCALING 1234", "container_state": "NORMAL", "original_uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "sequence_number": 0}, {"id": "54ace5951af483836f95b6d4c69759d10e1eb12f", "name": "02.Campaigns", "container_state": "NORMAL", "original_uoi_id": "54ace5951af483836f95b6d4c69759d10e1eb12f", "sequence_number": 0}, {"id": "1638869b9b347c39842effc7e5ff965de47e8e65", "name": "01.Standard", "container_state": "NORMAL", "original_uoi_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "sequence_number": 0}, {"id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "name": "01.Poland", "container_state": "NORMAL", "original_uoi_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "sequence_number": 0}, {"id": "341bbf240ea033435cc225cd1add5c009bc067d7", "name": "PL", "container_state": "NORMAL", "original_uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "sequence_number": 0}, {"id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "name": "01. PL - Nutella", "container_state": "NORMAL", "original_uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "sequence_number": 0}, {"id": "5353bb35177d792b073acc634e010df2908fde32", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "0c30edd40569bc215307f7215ab86cbd8fac163b", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "0c30edd40569bc215307f7215ab86cbd8fac163b", "sequence_number": 0}, {"id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "name": "CONTENT SCALING XX", "container_state": "NORMAL", "original_uoi_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "sequence_number": 0}, {"id": "54ace5951af483836f95b6d4c69759d10e1eb12f", "name": "02.Campaigns", "container_state": "NORMAL", "original_uoi_id": "54ace5951af483836f95b6d4c69759d10e1eb12f", "sequence_number": 0}, {"id": "1638869b9b347c39842effc7e5ff965de47e8e65", "name": "01.Standard", "container_state": "NORMAL", "original_uoi_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "sequence_number": 0}, {"id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "name": "01.Poland", "container_state": "NORMAL", "original_uoi_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "sequence_number": 0}, {"id": "341bbf240ea033435cc225cd1add5c009bc067d7", "name": "PL", "container_state": "NORMAL", "original_uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "sequence_number": 0}, {"id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "name": "01. PL - Nutella", "container_state": "NORMAL", "original_uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "sequence_number": 0}, {"id": "5353bb35177d792b073acc634e010df2908fde32", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "4c1c7f196a1c3ed92b46d235cb565892ef92e843", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "4c1c7f196a1c3ed92b46d235cb565892ef92e843", "sequence_number": 0}, {"id": "0782f78ca6fe95281660f0299a8a28c526628c95", "name": "CONTENT SCALING OLIVER TEST 3", "container_state": "NORMAL", "original_uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "sequence_number": 0}, {"id": "f389599295d557119a440c04d15b17f1b6e59107", "name": "Campaigns", "container_state": "NORMAL", "original_uoi_id": "f389599295d557119a440c04d15b17f1b6e59107", "sequence_number": 0}, {"id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "name": "DE", "container_state": "NORMAL", "original_uoi_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "sequence_number": 0}, {"id": "5353bb35177d792b073acc634e010df2908fde32", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "251d8b8f1089c9f08cf282832453f0f6ccca00f1", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "251d8b8f1089c9f08cf282832453f0f6ccca00f1", "sequence_number": 0}, {"id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "name": "NUTELLA PLANT-BASED LAUNCH", "container_state": "NORMAL", "original_uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "sequence_number": 0}, {"id": "413c776f4416163b88737d53bb72dfe23bfd2430", "name": "Global", "container_state": "NORMAL", "original_uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "50e4b3e99601b02fda1162b949073a158c06a427", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "50e4b3e99601b02fda1162b949073a158c06a427", "sequence_number": 0}, {"id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "name": "Oliver Sharing", "container_state": "NORMAL", "original_uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "sequence_number": 0}, {"id": "23b155c32d5c6142914b41458234c100812bbec8", "name": "Oliver", "container_state": "NORMAL", "original_uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "sequence_number": 0}, {"id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "name": "Z - Exchange", "container_state": "NORMAL", "original_uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "4c1c7f196a1c3ed92b46d235cb565892ef92e843", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "4c1c7f196a1c3ed92b46d235cb565892ef92e843", "sequence_number": 0}, {"id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "name": "Oliver Sharing", "container_state": "NORMAL", "original_uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "sequence_number": 0}, {"id": "23b155c32d5c6142914b41458234c100812bbec8", "name": "Oliver", "container_state": "NORMAL", "original_uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "sequence_number": 0}, {"id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "name": "Z - Exchange", "container_state": "NORMAL", "original_uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}], "creator_id": "1003", "asset_state": "NORMAL", "checked_out": false, "folder_path": "", "content_size": 5000, "content_type": "BITMAP", "content_state": "NORMAL", "date_imported": "2025-10-31T16:39:58.037+01:00", "import_job_id": 214972, "subscribed_to": false, "collection_ids": [], "latest_version": true, "legacy_model_id": 116, "content_editable": true, "import_user_name": "bizAdmin", "date_last_updated": "2025-11-05T12:08:52.673+01:00", "metadata_model_id": "ECOMMERCE", "original_asset_id": "747110b96dede761a445a3bf0c90f13bb38024fa", "rendition_content": {"preview_content": {"id": "a5608ee8058228c10a407fbfcc00efe0a6ebe0ef", "url": "/otmmapi/v6/renditions/a5608ee8058228c10a407fbfcc00efe0a6ebe0ef", "name": "nutella pbased-S.png", "width": 203, "height": 249, "mime_type": "image/png", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "PREVIEW", "content_path": "data\\\\repository\\\\screen\\\\vol0\\\\180\\\\nutella pbased-S_a5608ee8058228c10a407fbfcc00efe0a6ebe0ef.png", "content_size": 23906, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "thumbnail_content": {"id": "9543be3395c8f021749463e081c7915466ee847d", "url": "/otmmapi/v6/renditions/9543be3395c8f021749463e081c7915466ee847d", "name": "nutella pbased-T.png", "width": 203, "height": 249, "mime_type": "image/png", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "THUMBNAIL", "content_path": "data\\\\repository\\\\thumb\\\\vol0\\\\195\\\\nutella pbased-T_9543be3395c8f021749463e081c7915466ee847d.png", "content_size": 23906, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_content_info": {"master_content": {"id": "b89909f751facf935dceb729a141fee657575a74", "url": "/otmmapi/v6/renditions/b89909f751facf935dceb729a141fee657575a74", "name": "nutella pbased.jpg", "width": 203, "height": 249, "mime_type": "image/jpeg", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\220\\\\nutella pbased_b89909f751facf935dceb729a141fee657575a74.jpg", "content_size": 5000, "unit_of_size": "BYTES", "content_checksum": "2e5fec19952ccaac976f13f88b3ef32d", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_state_user_id": "1001", "master_content_info": {"id": "b89909f751facf935dceb729a141fee657575a74", "url": "/otmmapi/v6/renditions/b89909f751facf935dceb729a141fee657575a74", "name": "nutella pbased.jpg", "width": 203, "height": 249, "mime_type": "image/jpeg", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\220\\\\nutella pbased_b89909f751facf935dceb729a141fee657575a74.jpg", "content_size": 5000, "unit_of_size": "BYTES", "content_checksum": "2e5fec19952ccaac976f13f88b3ef32d", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "delivery_service_url": "https://ppr.dam.ferrero.com/adaptivemedia/rendition?id=747110b96dede761a445a3bf0c90f13bb38024fa", "product_associations": false, "security_policy_list": [{"id": 7534, "name": "Nutella Global Editable Nutella Core", "status": "NORMAL", "created_by": "1003", "create_date": "2023-12-15T17:39:27.973+01:00", "description": "Nutella Global Editable Nutella Core", "ownership_type": "PUBLIC"}, {"id": 11338, "name": "Oliver Editable", "status": "NORMAL", "created_by": "1003", "create_date": "2025-10-29T10:16:15.733+01:00", "description": "Oliver Editable", "ownership_type": "PUBLIC"}], "thumbnail_content_id": "9543be3395c8f021749463e081c7915466ee847d", "content_state_user_id": "1003", "content_state_user_name": "OTMM BusinessAdmin", "asset_lock_state_user_id": "1001", "metadata_state_user_name": "otmm admin", "access_control_descriptor": {"permissions_map": {"entry": [{"key": "text.securityPolicy.permission.Custom04Permission", "value": true}, {"key": "text.securityPolicy.permission.ContentEditPermission", "value": true}, {"key": "text.securityPolicy.permission.AssetViewPermission", "value": true}, {"key": "text.securityPolicy.permission.ProjectViewPermission", "value": true}, {"key": "text.securityPolicy.permission.MembershipEditPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom03Permission", "value": true}, {"key": "text.securityPolicy.permission.MetaDataEditPermission", "value": true}, {"key": "text.securityPolicy.permission.EditParentsPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom02Permission", "value": true}, {"key": "text.securityPolicy.permission.ExportPermission", "value": true}, {"key": "text.securityPolicy.permission.SummaryViewPermission", "value": true}, {"key": "text.securityPolicy.permission.PreviewViewPermission", "value": true}, {"key": "text.securityPolicy.permission.SubscribePermission", "value": true}, {"key": "text.securityPolicy.permission.DeleteAssetPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom01Permission", "value": true}]}}, "content_lock_state_user_id": "1003", "asset_state_last_update_date": "2025-11-05T12:08:52.673+01:00", "content_lock_state_user_name": "bizAdmin", "metadata_lock_state_user_name": "tsuper", "content_state_last_update_date": "2025-10-31T16:39:58.203+01:00", "inherited_metadata_collections": [{"container_id": "50e4b3e99601b02fda1162b949073a158c06a427", "container_name": "00. Master Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "50e4b3e99601b02fda1162b949073a158c06a427", "originator_id": "50e4b3e99601b02fda1162b949073a158c06a427", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00. Master Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "container_name": "CONTENT SCALING 1234", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CONTENT SCALING 1234"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000564"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CONTENT_SCALING_12_JV_LA_MLT_NUT_0000564"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local adaptation of global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000138"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Brand", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Market", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2024/2025"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2792"}, "display_value": "N/A, adminuser (adminuser, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2792"}, "display_value": "N/A, adminuser (adminuser, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2792"}, "display_value": "N/A, adminuser (adminuser, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2792"}, "display_value": "N/A, adminuser (adminuser, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "A3"}, "display_value": "Localized Asset received from Agency", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "54ace5951af483836f95b6d4c69759d10e1eb12f", "container_name": "02.Campaigns", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "54ace5951af483836f95b6d4c69759d10e1eb12f", "originator_id": "54ace5951af483836f95b6d4c69759d10e1eb12f", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "02.Campaigns"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "container_name": "01.Standard", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "originator_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "01.Standard"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "container_name": "01.Poland", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "originator_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "01.Poland"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "container_name": "PL", "container_type_id": "GLOBALMARKETUNIT", "container_type_name": "L6 - MARKET UNIT", "inherited_metadata_values": [{"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "b94dd71b732e3c1df6ae63216c53d4d4b0e7f002"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E39"}, "display_value": "POLAND", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "container_name": "01. PL - Nutella", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "5efe2981e6f9afca7ed3fc91a171f02162ef23e3"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E008"}, "display_value": "POLAND", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0de507c8b9d1f5942b6376b6c2a2b3ec1097e42e"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "5353bb35177d792b073acc634e010df2908fde32", "container_name": "EU", "container_type_id": "GEOGRAPHYLOCAL", "container_type_name": "L4 - GEOGRAPHY LOCAL", "inherited_metadata_values": [{"id": "FERRERO.MARKET.FOLDER.GLOBAL", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "4c4d4bf36bf8b1ace55f990e78d6332a9cb20990"}, "metadata_element": {"id": "FERRERO.MARKET.FOLDER.GLOBAL", "name": "Global/Local (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "LOCAL"}, "display_value": "Local", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local (Marketing)", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "GLOBALLOCAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_AREA", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "3dc200c993ab8263952dc6da1498026f615f45dd"}, "metadata_element": {"id": "MARKETING_AREA", "name": "AREA", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E010"}, "display_value": "EUROPE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "AREA", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "AREA", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "AREA", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "dc7749c3e113ec9e0b9e9a3840ea55673ca5e49f"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "f2d658a3829c2ea158ae70a4b4e7928bcf88f8e2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "container_name": "Nutella", "container_type_id": "GLOBALBRAND", "container_type_name": "L3 - BRAND", "inherited_metadata_values": [{"id": "FERRERO.TABULAR.NEW.BRAND", "tabular": true, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "9bb1c183135f5240f09132aef59c4ea48c762381"}, "metadata_element": {"id": "FERRERO.TABULAR.NEW.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF30"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND (Marketing)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF30"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "BRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TABULAR_BRAND", "column_name": "BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.NEW.BRAND", "parent_table_name": "BRAND (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "tabular": true, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "a37b13c02cba799378211e17b73234a0d836f9b6"}, "metadata_element": {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "JV"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND(HARMONIZED)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "JV"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.HARMONIZEDBRAND", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_HARMONIZEDBRAND", "column_name": "HARMONIZEDBRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.HARMONIZEDBRAND", "parent_table_name": "BRAND(HARMONIZED)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "container_name": "01. Nutella Core", "container_type_id": "GLOBALSUBCATEGORY", "container_type_name": "L2 - SUBCATEGORY", "inherited_metadata_values": [{"id": "MARKETING_SUBCATEGORY", "tabular": false, "value_id": {"uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "originator_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "inherited_field_id": "3000ad591e09b5c75f85fc2ccbb9ebeb31b3ab78"}, "metadata_element": {"id": "MARKETING_SUBCATEGORY", "name": "SUBCATEGORY", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Mart-Nutella-Core"}, "display_value": "Nutella Core", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "SUBCATEGORY", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "SUBCATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "SUBCATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "tabular": true, "value_id": {"uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "originator_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "inherited_field_id": "2c751ce760d88c0e271925ea5149348106944bfa"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Subcategory Owner", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_SUBCATEGORY_OWNER_TM", "column_name": "SUBCATEGORY_OWNER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "parent_table_name": "Subcategory Owner", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "container_name": "Nutella", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "originator_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E04"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "0c30edd40569bc215307f7215ab86cbd8fac163b", "container_name": "00. Master Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "0c30edd40569bc215307f7215ab86cbd8fac163b", "originator_id": "0c30edd40569bc215307f7215ab86cbd8fac163b", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00. Master Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "container_name": "CONTENT SCALING XX", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "originator_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CONTENT SCALING XX"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "originator_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000566"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "originator_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CONTENT_SCALING_XX_JV_LA_MLT_NUT_0000566"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "originator_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "originator_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "originator_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local adaptation of global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "originator_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000138"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "originator_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Brand", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "originator_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Market", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "originator_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2024/2025"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "originator_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "originator_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "originator_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "A5"}, "display_value": "Rework needed from Agency", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "4c1c7f196a1c3ed92b46d235cb565892ef92e843", "container_name": "00. Master Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "4c1c7f196a1c3ed92b46d235cb565892ef92e843", "originator_id": "4c1c7f196a1c3ed92b46d235cb565892ef92e843", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00. Master Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "container_name": "CONTENT SCALING OLIVER TEST 3", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CONTENT SCALING OLIVER TEST 3"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000551"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CONTENT_SCALING_OLI_JV_LA_DE_NUT_0000551"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local adaptation of global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000068"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Brand", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Market", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2025/2026"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2821"}, "display_value": "N/A, Krithiha (Krithiha, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2821"}, "display_value": "N/A, Krithiha (Krithiha, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2821"}, "display_value": "N/A, Krithiha (Krithiha, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2821"}, "display_value": "N/A, Krithiha (Krithiha, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "A1"}, "display_value": "Local Campaign ready for localization", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "f389599295d557119a440c04d15b17f1b6e59107", "container_name": "Campaigns", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "f389599295d557119a440c04d15b17f1b6e59107", "originator_id": "f389599295d557119a440c04d15b17f1b6e59107", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Campaigns"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "container_name": "DE", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "originator_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "inherited_field_id": "5efe2981e6f9afca7ed3fc91a171f02162ef23e3"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E006"}, "display_value": "GERMANY", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "originator_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Local DE Editable Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "originator_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Nutella Local DE Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "originator_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "originator_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "inherited_field_id": "0de507c8b9d1f5942b6376b6c2a2b3ec1097e42e"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E64"}, "display_value": "GERMANY", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "originator_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local comm on global brands"}, "display_value": "Local comm on global brands", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local comm on global brands"}, "display_value": "Local comm on global brands", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "251d8b8f1089c9f08cf282832453f0f6ccca00f1", "container_name": "05. Final Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "251d8b8f1089c9f08cf282832453f0f6ccca00f1", "originator_id": "251d8b8f1089c9f08cf282832453f0f6ccca00f1", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "05. Final Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "container_name": "NUTELLA PLANT-BASED LAUNCH", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA PLANT-BASED LAUNCH"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000068"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "GL_FY25_NUT_30_NUTELLA_PLANT_00068"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Brand", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Market", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Global comm024/2025"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2821"}, "display_value": "N/A, Krithiha (Krithiha, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2821"}, "display_value": "N/A, Krithiha (Krithiha, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2821"}, "display_value": "N/A, Krithiha (Krithiha, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2821"}, "display_value": "N/A, Krithiha (Krithiha, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "B2"}, "display_value": "Master campaign received from Agency", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "container_name": "Global", "container_type_id": "GEOGRAPHYGLOBAL", "container_type_name": "L4 - GEOGRAPHY GLOBAL", "inherited_metadata_values": [{"id": "FERRERO.MARKET.FOLDER.GLOBAL", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "963db123044a8d3ff5d8f4aac56d35df77a7656c"}, "metadata_element": {"id": "FERRERO.MARKET.FOLDER.GLOBAL", "name": "Global/Local (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "GLOBAL"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local (Marketing)", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "GLOBALLOCAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_AREA", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "3a37ace6a53a93799e0e18773ba6c7e70305cc78"}, "metadata_element": {"id": "MARKETING_AREA", "name": "AREA", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AREA", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "AREA", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "AREA", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "9f64f884b41d2a8445f4d9cd60714e91024e8b13"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Global Editable Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "8847a6dfbebcf323a8170649b390af1a375c08b8"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Nutella Global Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "758e614412f11ecb58446966d328974daf253446"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "53df9e81ae46cf6bd2440643426224b1fb904aeb"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "name": "Published Security Policy - Restricted Visibility", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Global Published Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Security Policy - Restricted Visibility", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_VISIBILITY_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "0fbcf70c95f5d28645e7a6187f7c429d62e60380"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Global comm"}, "display_value": "Global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Global comm"}, "display_value": "Global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "container_name": "Oliver Sharing", "container_type_id": "L3 - Agency Structure", "container_type_name": "L3 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "55530f721f18c847e35d7c828edf53461b5014b0"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "330bb6f68316aab5c45f9fe34e047cce573c67cc"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "name": "Agency Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "AGENCY_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "e30e90d694f9935d4c15c4c78891beed8853a272"}, "metadata_element": {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "name": "Published Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "PUBLISHED_ASSET_SP_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "23b155c32d5c6142914b41458234c100812bbec8", "container_name": "Oliver", "container_type_id": "L2 - Agency Structure", "container_type_name": "L2 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.AGENCY", "tabular": false, "value_id": {"uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "originator_id": "23b155c32d5c6142914b41458234c100812bbec8", "inherited_field_id": "48fcbc397986aca5bb8722a95197dd0a46f19b4e"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_AGENCY", "column_name": "AGENCY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "container_name": "Z - Exchange", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "YY"}, "display_value": "AGENCIES", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}], "asset_lock_state_last_update_date": "2025-11-05T12:08:52.677+01:00", "content_lock_state_last_update_date": "2025-10-31T16:39:59.727+01:00"} \N \N active f \N \N 2025-11-05 22:14:25.708002 2025-11-05 22:14:25.708002 2025-11-05 22:14:25.708002 2 pOiJ9s c8c5e34bc384c3dcc5fe06b91b6e0cfec2786f77 nutella pbased_beauty .jpg \N image/jpeg \N \N \N \N \N \N \N \N \N \N \N \N \N C000000068 0782f78ca6fe95281660f0299a8a28c526628c95 C000000551 89fa66f966144467721d6829db4d88d25ac026b1 Box File ID: 2037673275907\nBox URL: https://app.box.com/file/2037673275907\nDAM Asset ID: c8c5e34bc384c3dcc5fe06b91b6e0cfec2786f77 {"name": "nutella pbased_beauty.jpg", "links": {"links": [], "source_id": "c8c5e34bc384c3dcc5fe06b91b6e0cfec2786f77"}, "locked": false, "deleted": false, "expired": false, "version": 1, "asset_id": "c8c5e34bc384c3dcc5fe06b91b6e0cfec2786f77", "metadata": {"id": "ECOMMERCE", "name": "Marketing Asset", "type": "com.artesia.metadata.MetadataModel", "legacy_id": 116, "metadata_element_list": [{"id": "FERRERO.CATEGORY.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200054, "metadata_element_list": []}, {"id": "FERRER.CATEGORY.ASSET_INFO", "name": "Asset Info", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200022, "metadata_element_list": [{"id": "FERRERO.FIELD.FISCAL YEAR", "name": "Release Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2025/2026"}, "display_value": "2025/2026", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Release Fiscal Year", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_DOMAIN_FISCAL_YEAR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "FISCAL__YEAR", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "name": "Main Languages", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1210, "metadata_element_list": [{"id": "MAIN_LANGUAGES", "name": "MAIN LANGUAGES", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "MAIN LANGUAGES", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MAIN LAGUAGES_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MAIN_LANGUAGE_TABLE", "column_name": "MAIN_LANGUAGE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "parent_table_name": "Main Languages", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.ASSET DESCRIPTION", "name": "Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Description", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "DESCR", "data_length": 249, "description": "Descriptive information", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.FLAVOUR", "name": "Flavour", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Flavour", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.FLAVOUR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FLAVOUR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.SIZE", "name": "Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Size", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.SIZE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SIZE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1241, "metadata_element_list": [{"id": "FERRERO.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Compliance", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ASSETCOMPLIANCE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_COMPLIANCE", "column_name": "ASSET_COMPLIANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "parent_table_name": "Asset Compliance", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.TAG DETAILS", "name": "Tag Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 118, "metadata_element_list": [{"id": "ARTESIA.FIELD.TAG", "name": "Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "food", "field_value": {"type": "string", "value": "food"}, "display_value": "food", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Tag", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "food", "field_value": {"type": "string", "value": "food"}, "display_value": "food", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "indoor", "field_value": {"type": "string", "value": "indoor"}, "display_value": "indoor", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "kitchen appliance", "field_value": {"type": "string", "value": "kitchen appliance"}, "display_value": "kitchen appliance", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "text", "field_value": {"type": "string", "value": "text"}, "display_value": "text", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "snack", "field_value": {"type": "string", "value": "snack"}, "display_value": "snack", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "bottle", "field_value": {"type": "string", "value": "bottle"}, "display_value": "bottle", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "fast food", "field_value": {"type": "string", "value": "fast food"}, "display_value": "fast food", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "kitchen", "field_value": {"type": "string", "value": "kitchen"}, "display_value": "kitchen", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.TAGS", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "OTMM_TAGS", "column_name": "TAG", "data_length": 80, "description": "Tag", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG CONFIDENCE", "name": "Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 96.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Confidence", "values": [{"value": {"type": "decimal", "value": 96.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 93.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 64.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 64.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 62.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 59.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 57.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 51.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Confidence", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG TYPE", "name": "Tag Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Tag Type", "values": [{"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "TAG_TYPE", "data_length": 10, "description": "Tag Type", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED BY", "name": "Associated By", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Associated By", "values": [{"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_BY", "data_length": 10, "description": "Associated By", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED DATE", "name": "Associated Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-11-03T12:14:48.447+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Associated Date", "values": [{"value": {"type": "dateTime", "value": "2025-11-03T12:14:48.447+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-11-03T12:14:48.447+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-11-03T12:14:48.447+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-11-03T12:14:48.45+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-11-03T12:14:48.45+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-11-03T12:14:48.45+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-11-03T12:14:48.45+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-11-03T12:14:48.45+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_DATE", "data_length": 10, "description": "Associated Date", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.STATE", "name": "Global/Local", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "GLOBAL"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO_NOTNULL", "facetable": true, "searchable": true, "table_name": "FERRERO_IC_ASSET_DETAILS", "column_name": "ASSET_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.ASPECT RATIO", "name": "Aspect Ratio (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio (Marketing)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASPECT_RATIO", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASPECT_RATIO", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "name": "Tag (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1222, "metadata_element_list": [{"id": "MARKETING_TAG", "name": "Marketing Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Marketing Tag", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.DOMAIN.TAG", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TAG_MARKET", "column_name": "TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "parent_table_name": "Tag (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.TAGS", "name": "Auto-Generated Tags", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Auto-Generated Tags", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "AUTO_GENERATED_TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CERTIFIER", "name": "Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approver", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.MARKETING.FIELD.APPROVAL DATE", "name": "Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.CERTIFIER COMMENT", "name": "Approver Comment", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approver Comment", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "CERTIFIER_COMMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.LEGAL CERTIFER", "name": "Legal Certifier", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "User, Legal IA&CC (Local Legal IA&CC, active)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal Certifier", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "LEGAL_CERTIFIER_MARKETING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.LEGAL APPROVAL DATE", "name": "Legal Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-11-05T00:00:00+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.LEGAL COMMENT", "name": "Legal Comment", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal Comment", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_COMMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CERTIFIER", "name": "IA&CC Certifier", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "User, Legal IA&CC (Local Legal IA&CC, active)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Certifier", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CC APPROVAL DATE", "name": "IA&CC Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-11-05T00:00:00+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CC COMMENT", "name": "IA&CC Comment", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Comment", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_COMMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "name": "Extended Approval", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1230, "metadata_element_list": [{"id": "FERRERO.FIELD.EXTENDED.APPROVAL", "name": "Extended Approval required by:", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended Approval required by:", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COMMENTS", "name": "Comment", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comment", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "COMMENTS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.DATE", "name": "Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USERS", "name": "User ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "User ID", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "USERS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXTENDED.JOBID", "name": "Extended JobID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended JobID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.MIGRATION.INDEX", "name": "Migration Index", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Migration Index", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MIGRATION.INDEX", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MIGRATION_INDEX", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "FERRERO_MARKET_MARKETING_CREATOR", "name": "Marketing Creator", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Marketing Creator", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.CREATOR", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MARKETING_CREATOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "ARTESIA.FIELD.IS LATEST VERSION", "name": "Is Latest Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Y"}, "display_value": "Yes", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Is Latest Version", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.YES_NO", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "IS_LATEST_VERSION", "data_length": 1, "description": "Is this the latest version? (Y/N)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET VERSION", "name": "Asset Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 1}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Version", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "INTEGER", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "VERSION", "data_length": 12, "description": "Version number of asset", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET_ID", "name": "Asset ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "c8c5e34bc384c3dcc5fe06b91b6e0cfec2786f77"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset ID", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "LOGICAL_UOI_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.ECOMMERCE STATUS", "name": "Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "PENDING"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Status", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "ASSET_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CREATOR", "name": "Uploaded by", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Uploaded by", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_USER_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.FIELD.CREATION DATE", "name": "Upload Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-11-03T12:14:41.897+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Upload Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_DT", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.ASSET NAME", "name": "Asset Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "nutella pbased_beauty.jpg"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Name", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "description": "Original name of master object", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.CONTENT TYPE", "name": "Content Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "BITMAP"}, "display_value": "Image", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Type", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.CONTENT_TYPES", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "CONTENT_TYPE", "data_length": 8, "description": "Content Type", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.MIME TYPE", "name": "File Extension", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "image/jpeg"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Extension", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_MIME_TYPE", "data_length": 80, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.FILE.SIZE", "name": "File Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "long", "value": 6538}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Size", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "LONG", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_SIZE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP RESOLUTION", "name": "Bitmap Resolution", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 72}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Resolution", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_RESOLUTION", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP WIDTH", "name": "Bitmap Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 300}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Width", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_WIDTH", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP HEIGHT", "name": "Bitmap Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 168}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Height", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_HEIGHT", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.VIDEO.BIT_RATE", "name": "Bitrate", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitrate", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "BIT_RATE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.EMBEDDED.FIELD.DURATION", "name": "Duration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Duration", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "DURATION_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.ASPECT RATIO", "name": "Aspect Ratio", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "ASPECT_RATIO", "data_length": 30, "displayable": false, "instructions": "ASPECT_RATIO", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME HEIGHT", "name": "Frame Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Height", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_HEIGHT", "data_length": 12, "displayable": true, "instructions": "FRAME_HEIGHT", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME WIDTH", "name": "Frame Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Width", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_WIDTH", "data_length": 12, "displayable": true, "instructions": "FRAME_WIDTH", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.ASPECT.RATIO.POC", "name": "Aspect Ratio(POC)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "16:9"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio(POC)", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASPECT_RATIO_TABLE", "column_name": "ASPECT_RATIO", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "PRODUCT.DETAILS", "name": "Product Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200029, "metadata_element_list": [{"id": "FERRERO.TABLE.EANCODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1208, "metadata_element_list": [{"id": "EAN_CODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "EAN CODE/ 77 CODE", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "EAN.CODE", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "EAN_CODE", "column_name": "EAN_CODE_DESCRIPTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "COUNTRY", "name": "COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "EAN_CODE", "column_name": "COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.SUB BRAND", "name": "Sub-Brands", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Sub-Brands", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.SUBBRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "SUB_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT WEIGHT", "name": "Product Weight", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Weight", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_WEIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.CONSUMER UNIT PACKAGING", "name": "Consumer Unit Packaging", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Consumer Unit Packaging", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PACK", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "CONSUMER_UNIT_PACKAGING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.4 DIGIT CODE", "name": "4 Digit Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "4 Digit Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "DIGITCODE", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERREO.ECOM.RETAILER_SPECIFIC_FIELD", "name": "Retailer Specific", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Retailer Specific", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "RETAILER_SPECIFIC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "cascading_group_id": "FERRERO.RETAILER.SPECIFIC", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY END PERIOD", "name": "Asset validity end period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity end period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_ENDING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT VIEW", "name": "Product View", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product View", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT VIEW", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_VIEW", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT ANGLE", "name": "Product Angle", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Angle", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT.ANGLE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_ANGLE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT STATE", "name": "Product State", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product State", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT STATE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PROMOTION ID", "name": "Promo ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Promo ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROMO_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200048, "metadata_element_list": []}, {"id": "FERRERO.FIELD.CREATIX", "name": "CreativeX", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200059, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.CREATIVEX", "name": "Confidence", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1245, "metadata_element_list": [{"id": "FERRERO.TAB.FIELD.CREATIVEX", "name": "Platform > Rating (%)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.CascadingDomainValue", "field_value": {"type": "string", "value": "Google Ads^10"}, "element_values": {"entry": [{"key": 1, "value": {"active_to": "", "active_from": "", "description": "Google Ads", "field_value": {"type": "string", "value": "Google Ads"}, "display_value": "Google Ads", "expired_value": false}}, {"key": 2, "value": {"active_to": "", "active_from": "", "description": "10", "field_value": {"type": "string", "value": "10"}, "display_value": "10", "expired_value": false}}]}}, "is_locked": false, "domain_value": false, "cascading_domain_value": true}, "prompt": "Platform > Rating (%)", "values": [{"value": {"type": "com.artesia.metadata.CascadingDomainValue", "field_value": {"type": "string", "value": "Google Ads^10"}, "element_values": {"entry": [{"key": 1, "value": {"active_to": "", "active_from": "", "description": "Google Ads", "field_value": {"type": "string", "value": "Google Ads"}, "display_value": "Google Ads", "expired_value": false}}, {"key": 2, "value": {"active_to": "", "active_from": "", "description": "10", "field_value": {"type": "string", "value": "10"}, "display_value": "10", "expired_value": false}}]}}, "is_locked": false, "domain_value": false, "cascading_domain_value": true}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_CREATIVEX", "column_name": "CREATIVEX_NEW", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CREATIVEX", "parent_table_name": "Confidence", "cascading_group_id": "FERRERO.CREATIVEX.CHAR", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.CREATIVEX LINK", "name": "CreativeX Hyperlink", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "CreativeX Hyperlink", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_CREATIVEX", "column_name": "CREATIVE_LINK", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.IP_RIGHTS", "name": "IP Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200046, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.IPRIGHT", "name": "IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "IP Rights", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.IPRIGHTS", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IP_RIGHTS", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.BUYOUT", "name": "Touchpoint Scope", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Touchpoint Scope", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.TOTAL_BUYOUT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TOTAL_BUYOUT", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.FERRERO PROPERTY", "name": "Ferrero Property", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Ferrero Property", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.FERRERO_PROPERTY", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FERRERO_PROPERTY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200035, "metadata_element_list": []}, {"id": "FERRERO.MARKET.VID_STAT_RIGHT", "name": "Video & Static Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200047, "metadata_element_list": [{"id": "FERRERO.MARKET.VID_N_STAT", "name": "Video and Static Right", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Video and Static Right", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VID_AND_STAT_RIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.VID_STAT_TYPE", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1221, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.TYPE_VID", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Video & Static Right", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TYPE_VID_STAT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_MARKET_TYPE_VID_STAT", "column_name": "TYPE_OF_VIDEO_STATIC_RIGHT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.VID_STAT_TYPE", "parent_table_name": "Type of Video & Static Right", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKET.PROD_COMPANY", "name": "Production House", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Production House", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.PRODUCT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200050, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.LICENSIN", "name": "Licensing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Licensing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSING", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "cascading_group_id": "FERRERO.MARKET.CG.LICENSE", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.SPOT_DETAILS", "name": "Spot Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200049, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.SPOT_VERSION", "name": "Spot Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Version", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_VERSION", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_VERSION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.SPOT_TYPE", "name": "Spot Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_TYPE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.DIRECTOR_NAME", "name": "Director Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Director Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "DIRECTOR_NAME", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VIDEO_POST_PROD_COMPANY", "name": "Video Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VID_POST_PROD_CONTACT", "name": "Video Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_COMPANY", "name": "Audio Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_CONTACT", "name": "Audio Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.BROADCASTER.CODE", "name": "Broadcaster Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Broadcaster Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BROADCASTER_CODE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.TECHNICAL_VALIDATION", "name": "Technical Validation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Technical Validation", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TECHNICAL_VALIDATION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS", "name": "Media Analysis", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1002, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES COUNT", "name": "Faces Count", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Faces Count", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACECOUNT", "column_name": "COUNT", "data_length": 10, "description": "Faces Count", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "name": "Face Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 106, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME", "name": "Recognized Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME", "data_length": 2000, "description": "Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME CONFIDENCE", "name": "Recognized Name Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME_CONFIDENCE", "data_length": 10, "description": "Name Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE", "name": "Person Age", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE", "data_length": 10, "description": "Person Age", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE CONFIDENCE", "name": "Person Age Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Person Age Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_CONFIDENCE", "data_length": 10, "description": "Person Age Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER", "name": "Gender", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Gender", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.GENDER", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER", "data_length": 40, "description": "Gender", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER CONFIDENCE", "name": "Gender Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Gender Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER_CONFIDENCE", "data_length": 10, "description": "Gender Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.FACE COORDS", "name": "Face Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "FACE_COORDS", "data_length": 200, "description": "Face Coordinates like postion, height,width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE GROUP", "name": "Person Age Group", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age Group", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.AGE GROUP", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_GROUP", "data_length": 10, "description": "Person Age Group", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.ISBW", "name": "Is Black and White", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "false"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Is Black and White", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "ISBW", "data_length": 10, "description": "Is Black and White", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "name": "Image Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 110, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.IMAGE TYPE", "name": "Analysis Image Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Analysis Image Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_IMAGE_TYPE", "column_name": "TYPE", "data_length": 100, "description": "Image Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "parent_table_name": "Image Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.DATE", "name": "Date: Media Analysis", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-11-03T12:14:48+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date: Media Analysis", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MEDIA_ANALYSIS_DATE", "data_length": 25, "description": "Date Media Analysis was done on the asset.", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false}]}, {"id": "HYBRIS.PRODUCT.INFO", "name": "PIM Item Reference", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200027, "metadata_element_list": [{"id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "name": "Hybris Item Reference", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1206, "metadata_element_list": [{"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ID", "name": "Hybris Item ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ID", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT TAG NAME", "name": "Hybris Assignment Label", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Assignment Label", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_TAG_NAME", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ATTRIBUTE NAME", "name": "Hybris Attribute Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Attribute Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ATTRIBUTE_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT CATALOG NAME", "name": "Hybris Catalog Mnemonic", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Catalog Mnemonic", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_CATALOG_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT PK", "name": "Hybris Item PK", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item PK", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_PK", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.SYSTEM ID", "name": "Hybris System ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris System ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "SYSTEM_ID", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.ASSIGNED", "name": "Assigned", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Assigned", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "ASSIGNED", "column_name": "ASSIGNED", "data_length": 38, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PIM TYPE", "name": "PIM Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "PIM Type", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_PIM_TYPE", "column_name": "PIM_TYPE", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS VIDEO", "name": "Media Analysis Video", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1003, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "name": "Labels", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 113, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.ID", "name": "Label Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "ID", "data_length": 40, "description": "Label Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.NAME", "name": "Label Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "NAME", "data_length": 40, "description": "Label Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.APPEARANCES", "name": "Label Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "APPEARANCES", "data_length": 0, "description": "Label Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "name": "Sentiments", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 114, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.ID", "name": "Sentiment Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "ID", "data_length": 40, "description": "Sentiment Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.NAME", "name": "Sentiment Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "NAME", "data_length": 40, "description": "Sentiment Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.APPEARANCES", "name": "Sentiment Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "APPEARANCES", "data_length": 0, "description": "Sentiment Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.SEEN.DURATION.RATIO", "name": "Sentiment Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Sentiment Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "name": "Keywords", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 115, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.ID", "name": "Keyword Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "ID", "data_length": 40, "description": "Keyword Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.NAME", "name": "Keyword Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "NAME", "data_length": 40, "description": "Keyword Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.APPEARANCES", "name": "Keyword Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Keyword Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "name": "Faces", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 111, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.ID", "name": "Face Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "ID", "data_length": 40, "description": "Face Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.NAME", "name": "Face Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "NAME", "data_length": 40, "description": "Face Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.TITLE", "name": "Face Title", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Title", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "TITLE", "data_length": 249, "description": "Face Title", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.DESCRIPTION", "name": "Face Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Face Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.APPEARANCES", "name": "Face Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "APPEARANCES", "data_length": 0, "description": "Face Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SPEAKER.FACE.ID", "name": "Video Speaker Object Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Speaker Object Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "THUMBNAIL_OBJECT_ID", "data_length": 40, "description": "Video Speaker Object Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.SEEN.DURATION.RATIO", "name": "Face Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "SEEN_DURATION_RATIO", "data_length": 20, "description": "Face Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "name": "Brands", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 112, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.ID", "name": "Video Brand Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "ID", "data_length": 40, "description": "Brand Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.NAME", "name": "Video Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Brand Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.DESCRIPTION", "name": "Video Brand Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Brand Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.WIKIURL", "name": "Video Brand Wiki URL", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Wiki URL", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "WIKIURL", "data_length": 200, "description": "Brand Wiki URL", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.APPEARANCES", "name": "Video Brand Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Brand Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.SEEN.DURATION.RATIO", "name": "Video Brand Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Brand Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "name": "Speeches", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 116, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.ID", "name": "SpeechText Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "SpeechText Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "ID", "data_length": 40, "description": "SpeechText Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXT", "name": "Speech Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Text", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXT", "data_length": 1000, "description": "Speech Text", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXTTYPE", "name": "Speech Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXTTYPE", "data_length": 40, "description": "Speech Type", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.START TIME", "name": "Speech Start Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Start Time", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "START_TIME", "data_length": 40, "description": "Speech Start Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.END TIME", "name": "Speech End Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech End Time", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "END_TIME", "data_length": 40, "description": "Speech End Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "name": "Speakers", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 122, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.ID", "name": "Speaker Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "ID", "data_length": 40, "description": "Speaker Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.NAME", "name": "Speaker Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "NAME", "data_length": 100, "description": "Speaker Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.APPEARANCES", "name": "Speaker Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "APPEARANCES", "data_length": 0, "description": "Speaker Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.FIELDGROUP.LOCALASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200057, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1239, "metadata_element_list": [{"id": "FERRERO.FIELD.COUNTRY", "name": "LOCAL COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "LOCAL COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USER", "name": "USER", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "USER", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_USER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.ASSOCIATION", "name": "TYPE OF ASSOCIATION", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "TYPE OF ASSOCIATION", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_ASSOCIATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.VALUE", "name": "VALUE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "VALUE", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_VALUE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}], "has_multilingual_fields": false}, "mime_type": "image/jpeg", "path_list": [{"parents": [{"id": "50e4b3e99601b02fda1162b949073a158c06a427", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "50e4b3e99601b02fda1162b949073a158c06a427", "sequence_number": 0}, {"id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "name": "CONTENT SCALING 1234", "container_state": "NORMAL", "original_uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "sequence_number": 0}, {"id": "54ace5951af483836f95b6d4c69759d10e1eb12f", "name": "02.Campaigns", "container_state": "NORMAL", "original_uoi_id": "54ace5951af483836f95b6d4c69759d10e1eb12f", "sequence_number": 0}, {"id": "1638869b9b347c39842effc7e5ff965de47e8e65", "name": "01.Standard", "container_state": "NORMAL", "original_uoi_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "sequence_number": 0}, {"id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "name": "01.Poland", "container_state": "NORMAL", "original_uoi_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "sequence_number": 0}, {"id": "341bbf240ea033435cc225cd1add5c009bc067d7", "name": "PL", "container_state": "NORMAL", "original_uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "sequence_number": 0}, {"id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "name": "01. PL - Nutella", "container_state": "NORMAL", "original_uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "sequence_number": 0}, {"id": "5353bb35177d792b073acc634e010df2908fde32", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 1, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "dbef1c50275e771c31a26fc1f9ecf4e286907349", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "dbef1c50275e771c31a26fc1f9ecf4e286907349", "sequence_number": 0}, {"id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "name": "CONTENT SCALING 12345", "container_state": "NORMAL", "original_uoi_id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "sequence_number": 0}, {"id": "54ace5951af483836f95b6d4c69759d10e1eb12f", "name": "02.Campaigns", "container_state": "NORMAL", "original_uoi_id": "54ace5951af483836f95b6d4c69759d10e1eb12f", "sequence_number": 0}, {"id": "1638869b9b347c39842effc7e5ff965de47e8e65", "name": "01.Standard", "container_state": "NORMAL", "original_uoi_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "sequence_number": 0}, {"id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "name": "01.Poland", "container_state": "NORMAL", "original_uoi_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "sequence_number": 0}, {"id": "341bbf240ea033435cc225cd1add5c009bc067d7", "name": "PL", "container_state": "NORMAL", "original_uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "sequence_number": 0}, {"id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "name": "01. PL - Nutella", "container_state": "NORMAL", "original_uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "sequence_number": 0}, {"id": "5353bb35177d792b073acc634e010df2908fde32", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "4c1c7f196a1c3ed92b46d235cb565892ef92e843", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "4c1c7f196a1c3ed92b46d235cb565892ef92e843", "sequence_number": 0}, {"id": "0782f78ca6fe95281660f0299a8a28c526628c95", "name": "CONTENT SCALING OLIVER TEST 3", "container_state": "NORMAL", "original_uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "sequence_number": 0}, {"id": "f389599295d557119a440c04d15b17f1b6e59107", "name": "Campaigns", "container_state": "NORMAL", "original_uoi_id": "f389599295d557119a440c04d15b17f1b6e59107", "sequence_number": 0}, {"id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "name": "DE", "container_state": "NORMAL", "original_uoi_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "sequence_number": 0}, {"id": "5353bb35177d792b073acc634e010df2908fde32", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 1, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "251d8b8f1089c9f08cf282832453f0f6ccca00f1", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "251d8b8f1089c9f08cf282832453f0f6ccca00f1", "sequence_number": 0}, {"id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "name": "NUTELLA PLANT-BASED LAUNCH", "container_state": "NORMAL", "original_uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "sequence_number": 0}, {"id": "413c776f4416163b88737d53bb72dfe23bfd2430", "name": "Global", "container_state": "NORMAL", "original_uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 1, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "dbef1c50275e771c31a26fc1f9ecf4e286907349", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "dbef1c50275e771c31a26fc1f9ecf4e286907349", "sequence_number": 0}, {"id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "name": "Oliver Sharing", "container_state": "NORMAL", "original_uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "sequence_number": 0}, {"id": "23b155c32d5c6142914b41458234c100812bbec8", "name": "Oliver", "container_state": "NORMAL", "original_uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "sequence_number": 0}, {"id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "name": "Z - Exchange", "container_state": "NORMAL", "original_uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "50e4b3e99601b02fda1162b949073a158c06a427", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "50e4b3e99601b02fda1162b949073a158c06a427", "sequence_number": 0}, {"id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "name": "Oliver Sharing", "container_state": "NORMAL", "original_uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "sequence_number": 0}, {"id": "23b155c32d5c6142914b41458234c100812bbec8", "name": "Oliver", "container_state": "NORMAL", "original_uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "sequence_number": 0}, {"id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "name": "Z - Exchange", "container_state": "NORMAL", "original_uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "sequence_number": 0}], "complete": true, "sequence_number": 1, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "4c1c7f196a1c3ed92b46d235cb565892ef92e843", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "4c1c7f196a1c3ed92b46d235cb565892ef92e843", "sequence_number": 0}, {"id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "name": "Oliver Sharing", "container_state": "NORMAL", "original_uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "sequence_number": 0}, {"id": "23b155c32d5c6142914b41458234c100812bbec8", "name": "Oliver", "container_state": "NORMAL", "original_uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "sequence_number": 0}, {"id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "name": "Z - Exchange", "container_state": "NORMAL", "original_uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "sequence_number": 0}], "complete": true, "sequence_number": 1, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}], "creator_id": "1003", "asset_state": "NORMAL", "checked_out": false, "folder_path": "", "content_size": 6538, "content_type": "BITMAP", "content_state": "NORMAL", "date_imported": "2025-11-03T12:14:41.897+01:00", "import_job_id": 215101, "subscribed_to": false, "collection_ids": [], "latest_version": true, "legacy_model_id": 116, "content_editable": true, "import_user_name": "bizAdmin", "date_last_updated": "2025-11-05T19:26:18.707+01:00", "metadata_model_id": "ECOMMERCE", "original_asset_id": "c8c5e34bc384c3dcc5fe06b91b6e0cfec2786f77", "rendition_content": {"preview_content": {"id": "a3a19abbd3918a13b5b4ad6e6931ad1a871d44ca", "url": "/otmmapi/v6/renditions/a3a19abbd3918a13b5b4ad6e6931ad1a871d44ca", "name": "nutella pbased_beauty-S.png", "width": 300, "height": 168, "mime_type": "image/png", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "PREVIEW", "content_path": "data\\\\repository\\\\screen\\\\vol0\\\\180\\\\nutella pbased_beauty-S_a3a19abbd3918a13b5b4ad6e6931ad1a871d44ca.png", "content_size": 62296, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "thumbnail_content": {"id": "200f1d3604a24a25afeb24df3c03ad51c63449cc", "url": "/otmmapi/v6/renditions/200f1d3604a24a25afeb24df3c03ad51c63449cc", "name": "nutella pbased_beauty-T.png", "width": 300, "height": 168, "mime_type": "image/png", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "THUMBNAIL", "content_path": "data\\\\repository\\\\thumb\\\\vol0\\\\195\\\\nutella pbased_beauty-T_200f1d3604a24a25afeb24df3c03ad51c63449cc.png", "content_size": 62296, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_content_info": {"master_content": {"id": "297c36f39e99d4408389766544b3cf317e95886c", "url": "/otmmapi/v6/renditions/297c36f39e99d4408389766544b3cf317e95886c", "name": "nutella pbased_beauty.jpg", "width": 300, "height": 168, "mime_type": "image/jpeg", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\220\\\\nutella pbased_beauty_297c36f39e99d4408389766544b3cf317e95886c.jpg", "content_size": 6538, "unit_of_size": "BYTES", "content_checksum": "ec5144fe641216b55573e5c76c0367cf", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_state_user_id": "2792", "master_content_info": {"id": "297c36f39e99d4408389766544b3cf317e95886c", "url": "/otmmapi/v6/renditions/297c36f39e99d4408389766544b3cf317e95886c", "name": "nutella pbased_beauty.jpg", "width": 300, "height": 168, "mime_type": "image/jpeg", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\220\\\\nutella pbased_beauty_297c36f39e99d4408389766544b3cf317e95886c.jpg", "content_size": 6538, "unit_of_size": "BYTES", "content_checksum": "ec5144fe641216b55573e5c76c0367cf", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "delivery_service_url": "https://ppr.dam.ferrero.com/adaptivemedia/rendition?id=c8c5e34bc384c3dcc5fe06b91b6e0cfec2786f77", "product_associations": false, "security_policy_list": [{"id": 5467, "name": "Marketing Viewer", "status": "NORMAL", "created_by": "1003", "create_date": "2023-10-06T16:52:07.297+02:00", "description": "Marketing Viewer", "ownership_type": "PUBLIC"}], "thumbnail_content_id": "200f1d3604a24a25afeb24df3c03ad51c63449cc", "content_state_user_id": "1003", "content_state_user_name": "OTMM BusinessAdmin", "asset_lock_state_user_id": "2792", "metadata_state_user_name": "adminuser N/A", "access_control_descriptor": {"permissions_map": {"entry": [{"key": "text.securityPolicy.permission.Custom04Permission", "value": true}, {"key": "text.securityPolicy.permission.ContentEditPermission", "value": true}, {"key": "text.securityPolicy.permission.AssetViewPermission", "value": true}, {"key": "text.securityPolicy.permission.ProjectViewPermission", "value": true}, {"key": "text.securityPolicy.permission.MembershipEditPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom03Permission", "value": true}, {"key": "text.securityPolicy.permission.MetaDataEditPermission", "value": true}, {"key": "text.securityPolicy.permission.EditParentsPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom02Permission", "value": true}, {"key": "text.securityPolicy.permission.ExportPermission", "value": true}, {"key": "text.securityPolicy.permission.SummaryViewPermission", "value": true}, {"key": "text.securityPolicy.permission.PreviewViewPermission", "value": true}, {"key": "text.securityPolicy.permission.SubscribePermission", "value": true}, {"key": "text.securityPolicy.permission.DeleteAssetPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom01Permission", "value": true}]}}, "content_lock_state_user_id": "1003", "asset_state_last_update_date": "2025-11-05T19:26:18.707+01:00", "content_lock_state_user_name": "bizAdmin", "metadata_lock_state_user_name": "adminuser", "content_state_last_update_date": "2025-11-03T12:14:42.037+01:00", "inherited_metadata_collections": [{"container_id": "50e4b3e99601b02fda1162b949073a158c06a427", "container_name": "00. Master Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "50e4b3e99601b02fda1162b949073a158c06a427", "originator_id": "50e4b3e99601b02fda1162b949073a158c06a427", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00. Master Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "container_name": "CONTENT SCALING 1234", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CONTENT SCALING 1234"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000564"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CONTENT_SCALING_12_JV_LA_MLT_NUT_0000564"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local adaptation of global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000138"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Brand", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Market", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2024/2025"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2792"}, "display_value": "N/A, adminuser (adminuser, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2792"}, "display_value": "N/A, adminuser (adminuser, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2792"}, "display_value": "N/A, adminuser (adminuser, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2792"}, "display_value": "N/A, adminuser (adminuser, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "A3"}, "display_value": "Localized Asset received from Agency", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "54ace5951af483836f95b6d4c69759d10e1eb12f", "container_name": "02.Campaigns", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "54ace5951af483836f95b6d4c69759d10e1eb12f", "originator_id": "54ace5951af483836f95b6d4c69759d10e1eb12f", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "02.Campaigns"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "container_name": "01.Standard", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "originator_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "01.Standard"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "container_name": "01.Poland", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "originator_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "01.Poland"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "container_name": "PL", "container_type_id": "GLOBALMARKETUNIT", "container_type_name": "L6 - MARKET UNIT", "inherited_metadata_values": [{"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "b94dd71b732e3c1df6ae63216c53d4d4b0e7f002"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E39"}, "display_value": "POLAND", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "container_name": "01. PL - Nutella", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "5efe2981e6f9afca7ed3fc91a171f02162ef23e3"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E008"}, "display_value": "POLAND", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0de507c8b9d1f5942b6376b6c2a2b3ec1097e42e"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "5353bb35177d792b073acc634e010df2908fde32", "container_name": "EU", "container_type_id": "GEOGRAPHYLOCAL", "container_type_name": "L4 - GEOGRAPHY LOCAL", "inherited_metadata_values": [{"id": "FERRERO.MARKET.FOLDER.GLOBAL", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "4c4d4bf36bf8b1ace55f990e78d6332a9cb20990"}, "metadata_element": {"id": "FERRERO.MARKET.FOLDER.GLOBAL", "name": "Global/Local (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "LOCAL"}, "display_value": "Local", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local (Marketing)", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "GLOBALLOCAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_AREA", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "3dc200c993ab8263952dc6da1498026f615f45dd"}, "metadata_element": {"id": "MARKETING_AREA", "name": "AREA", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E010"}, "display_value": "EUROPE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "AREA", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "AREA", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "AREA", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "dc7749c3e113ec9e0b9e9a3840ea55673ca5e49f"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "f2d658a3829c2ea158ae70a4b4e7928bcf88f8e2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "container_name": "Nutella", "container_type_id": "GLOBALBRAND", "container_type_name": "L3 - BRAND", "inherited_metadata_values": [{"id": "FERRERO.TABULAR.NEW.BRAND", "tabular": true, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "9bb1c183135f5240f09132aef59c4ea48c762381"}, "metadata_element": {"id": "FERRERO.TABULAR.NEW.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF30"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND (Marketing)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF30"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "BRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TABULAR_BRAND", "column_name": "BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.NEW.BRAND", "parent_table_name": "BRAND (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "tabular": true, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "a37b13c02cba799378211e17b73234a0d836f9b6"}, "metadata_element": {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "JV"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND(HARMONIZED)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "JV"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.HARMONIZEDBRAND", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_HARMONIZEDBRAND", "column_name": "HARMONIZEDBRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.HARMONIZEDBRAND", "parent_table_name": "BRAND(HARMONIZED)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "container_name": "01. Nutella Core", "container_type_id": "GLOBALSUBCATEGORY", "container_type_name": "L2 - SUBCATEGORY", "inherited_metadata_values": [{"id": "MARKETING_SUBCATEGORY", "tabular": false, "value_id": {"uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "originator_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "inherited_field_id": "3000ad591e09b5c75f85fc2ccbb9ebeb31b3ab78"}, "metadata_element": {"id": "MARKETING_SUBCATEGORY", "name": "SUBCATEGORY", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Mart-Nutella-Core"}, "display_value": "Nutella Core", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "SUBCATEGORY", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "SUBCATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "SUBCATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "tabular": true, "value_id": {"uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "originator_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "inherited_field_id": "2c751ce760d88c0e271925ea5149348106944bfa"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Subcategory Owner", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_SUBCATEGORY_OWNER_TM", "column_name": "SUBCATEGORY_OWNER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "parent_table_name": "Subcategory Owner", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "container_name": "Nutella", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "originator_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E04"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "dbef1c50275e771c31a26fc1f9ecf4e286907349", "container_name": "00. Master Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "dbef1c50275e771c31a26fc1f9ecf4e286907349", "originator_id": "dbef1c50275e771c31a26fc1f9ecf4e286907349", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00. Master Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "container_name": "CONTENT SCALING 12345", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "originator_id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CONTENT SCALING 12345"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "originator_id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "originator_id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "originator_id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "originator_id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "originator_id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local adaptation of global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "originator_id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "originator_id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Brand", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "originator_id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Market", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "originator_id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2024/2025"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "originator_id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "originator_id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "originator_id": "0ddc277580f513f6c5c6aef20ce42d8ed1b22d4b", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "A4"}, "display_value": "Localization completed", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "4c1c7f196a1c3ed92b46d235cb565892ef92e843", "container_name": "00. Master Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "4c1c7f196a1c3ed92b46d235cb565892ef92e843", "originator_id": "4c1c7f196a1c3ed92b46d235cb565892ef92e843", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00. Master Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "container_name": "CONTENT SCALING OLIVER TEST 3", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CONTENT SCALING OLIVER TEST 3"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000551"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CONTENT_SCALING_OLI_JV_LA_DE_NUT_0000551"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local adaptation of global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000068"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Brand", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Market", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2025/2026"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2821"}, "display_value": "N/A, Krithiha (Krithiha, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2821"}, "display_value": "N/A, Krithiha (Krithiha, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2821"}, "display_value": "N/A, Krithiha (Krithiha, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2821"}, "display_value": "N/A, Krithiha (Krithiha, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "A1"}, "display_value": "Local Campaign ready for localization", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "f389599295d557119a440c04d15b17f1b6e59107", "container_name": "Campaigns", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "f389599295d557119a440c04d15b17f1b6e59107", "originator_id": "f389599295d557119a440c04d15b17f1b6e59107", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Campaigns"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "container_name": "DE", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "originator_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "inherited_field_id": "5efe2981e6f9afca7ed3fc91a171f02162ef23e3"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E006"}, "display_value": "GERMANY", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "originator_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Local DE Editable Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "originator_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Nutella Local DE Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "originator_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "originator_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "inherited_field_id": "0de507c8b9d1f5942b6376b6c2a2b3ec1097e42e"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E64"}, "display_value": "GERMANY", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "originator_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local comm on global brands"}, "display_value": "Local comm on global brands", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local comm on global brands"}, "display_value": "Local comm on global brands", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "251d8b8f1089c9f08cf282832453f0f6ccca00f1", "container_name": "05. Final Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "251d8b8f1089c9f08cf282832453f0f6ccca00f1", "originator_id": "251d8b8f1089c9f08cf282832453f0f6ccca00f1", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "05. Final Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "container_name": "NUTELLA PLANT-BASED LAUNCH", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA PLANT-BASED LAUNCH"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000068"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "GL_FY25_NUT_30_NUTELLA_PLANT_00068"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Brand", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Market", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Global comm024/2025"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2821"}, "display_value": "N/A, Krithiha (Krithiha, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2821"}, "display_value": "N/A, Krithiha (Krithiha, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2821"}, "display_value": "N/A, Krithiha (Krithiha, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2821"}, "display_value": "N/A, Krithiha (Krithiha, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "B2"}, "display_value": "Master campaign received from Agency", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "container_name": "Global", "container_type_id": "GEOGRAPHYGLOBAL", "container_type_name": "L4 - GEOGRAPHY GLOBAL", "inherited_metadata_values": [{"id": "FERRERO.MARKET.FOLDER.GLOBAL", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "963db123044a8d3ff5d8f4aac56d35df77a7656c"}, "metadata_element": {"id": "FERRERO.MARKET.FOLDER.GLOBAL", "name": "Global/Local (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "GLOBAL"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local (Marketing)", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "GLOBALLOCAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_AREA", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "3a37ace6a53a93799e0e18773ba6c7e70305cc78"}, "metadata_element": {"id": "MARKETING_AREA", "name": "AREA", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AREA", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "AREA", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "AREA", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "9f64f884b41d2a8445f4d9cd60714e91024e8b13"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Global Editable Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "8847a6dfbebcf323a8170649b390af1a375c08b8"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Nutella Global Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "758e614412f11ecb58446966d328974daf253446"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "53df9e81ae46cf6bd2440643426224b1fb904aeb"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "name": "Published Security Policy - Restricted Visibility", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Global Published Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Security Policy - Restricted Visibility", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_VISIBILITY_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "0fbcf70c95f5d28645e7a6187f7c429d62e60380"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Global comm"}, "display_value": "Global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Global comm"}, "display_value": "Global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "container_name": "Oliver Sharing", "container_type_id": "L3 - Agency Structure", "container_type_name": "L3 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "55530f721f18c847e35d7c828edf53461b5014b0"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "330bb6f68316aab5c45f9fe34e047cce573c67cc"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "name": "Agency Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "AGENCY_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "e30e90d694f9935d4c15c4c78891beed8853a272"}, "metadata_element": {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "name": "Published Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "PUBLISHED_ASSET_SP_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "23b155c32d5c6142914b41458234c100812bbec8", "container_name": "Oliver", "container_type_id": "L2 - Agency Structure", "container_type_name": "L2 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.AGENCY", "tabular": false, "value_id": {"uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "originator_id": "23b155c32d5c6142914b41458234c100812bbec8", "inherited_field_id": "48fcbc397986aca5bb8722a95197dd0a46f19b4e"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_AGENCY", "column_name": "AGENCY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "container_name": "Z - Exchange", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "YY"}, "display_value": "AGENCIES", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}], "asset_lock_state_last_update_date": "2025-11-05T19:26:19.133+01:00", "content_lock_state_last_update_date": "2025-11-03T12:14:42.063+01:00"} \N \N active f \N \N 2025-11-05 22:14:28.65811 2025-11-05 22:14:28.65811 2025-11-05 22:14:28.65811 3 7xXgKp 747110b96dede761a445a3bf0c90f13bb38024fa nutella pbased .jpg \N image/jpeg \N \N \N \N \N \N \N \N \N \N \N \N \N C000000068 0782f78ca6fe95281660f0299a8a28c526628c95 C000000551 89fa66f966144467721d6829db4d88d25ac026b1 Cloned for testing - Tracking ID: 7xXgKp {"name": "nutella pbased.jpg", "links": {"links": [], "source_id": "747110b96dede761a445a3bf0c90f13bb38024fa"}, "locked": false, "deleted": false, "expired": false, "version": 1, "asset_id": "747110b96dede761a445a3bf0c90f13bb38024fa", "metadata": {"id": "ECOMMERCE", "name": "Marketing Asset", "type": "com.artesia.metadata.MetadataModel", "legacy_id": 116, "metadata_element_list": [{"id": "FERRERO.CATEGORY.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200054, "metadata_element_list": []}, {"id": "FERRER.CATEGORY.ASSET_INFO", "name": "Asset Info", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200022, "metadata_element_list": [{"id": "FERRERO.FIELD.FISCAL YEAR", "name": "Release Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2024/2025"}, "display_value": "2024/2025", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Release Fiscal Year", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_DOMAIN_FISCAL_YEAR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "FISCAL__YEAR", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "name": "Main Languages", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1210, "metadata_element_list": [{"id": "MAIN_LANGUAGES", "name": "MAIN LANGUAGES", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "MAIN LANGUAGES", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MAIN LAGUAGES_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MAIN_LANGUAGE_TABLE", "column_name": "MAIN_LANGUAGE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "parent_table_name": "Main Languages", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.ASSET DESCRIPTION", "name": "Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Description", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "DESCR", "data_length": 249, "description": "Descriptive information", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.FLAVOUR", "name": "Flavour", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Flavour", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.FLAVOUR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FLAVOUR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.SIZE", "name": "Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Size", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.SIZE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SIZE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1241, "metadata_element_list": [{"id": "FERRERO.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Compliance", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ASSETCOMPLIANCE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_COMPLIANCE", "column_name": "ASSET_COMPLIANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "parent_table_name": "Asset Compliance", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.TAG DETAILS", "name": "Tag Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 118, "metadata_element_list": [{"id": "ARTESIA.FIELD.TAG", "name": "Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "food", "field_value": {"type": "string", "value": "food"}, "display_value": "food", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Tag", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "food", "field_value": {"type": "string", "value": "food"}, "display_value": "food", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "fruit preserve", "field_value": {"type": "string", "value": "fruit preserve"}, "display_value": "fruit preserve", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "preserved food", "field_value": {"type": "string", "value": "preserved food"}, "display_value": "preserved food", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "condiment", "field_value": {"type": "string", "value": "condiment"}, "display_value": "condiment", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "mason jar", "field_value": {"type": "string", "value": "mason jar"}, "display_value": "mason jar", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "canning", "field_value": {"type": "string", "value": "canning"}, "display_value": "canning", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "food storage containers", "field_value": {"type": "string", "value": "food storage containers"}, "display_value": "food storage containers", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "sauces", "field_value": {"type": "string", "value": "sauces"}, "display_value": "sauces", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "lekvar", "field_value": {"type": "string", "value": "lekvar"}, "display_value": "lekvar", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "pickling", "field_value": {"type": "string", "value": "pickling"}, "display_value": "pickling", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "food storage", "field_value": {"type": "string", "value": "food storage"}, "display_value": "food storage", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "healthy", "field_value": {"type": "string", "value": "healthy"}, "display_value": "healthy", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "jam", "field_value": {"type": "string", "value": "jam"}, "display_value": "jam", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "ingredient", "field_value": {"type": "string", "value": "ingredient"}, "display_value": "ingredient", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "sauce", "field_value": {"type": "string", "value": "sauce"}, "display_value": "sauce", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "seasoning", "field_value": {"type": "string", "value": "seasoning"}, "display_value": "seasoning", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "bottle", "field_value": {"type": "string", "value": "bottle"}, "display_value": "bottle", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "honey", "field_value": {"type": "string", "value": "honey"}, "display_value": "honey", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.TAGS", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "OTMM_TAGS", "column_name": "TAG", "data_length": 80, "description": "Tag", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG CONFIDENCE", "name": "Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 89.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Confidence", "values": [{"value": {"type": "decimal", "value": 89.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 89.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 89.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 86.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 73.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 73.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 70.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 70.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 66.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 64.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 60.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 58.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 57.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 57.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 56.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 52.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 52.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 5.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Confidence", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG TYPE", "name": "Tag Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Tag Type", "values": [{"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "TAG_TYPE", "data_length": 10, "description": "Tag Type", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED BY", "name": "Associated By", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Associated By", "values": [{"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_BY", "data_length": 10, "description": "Associated By", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED DATE", "name": "Associated Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.607+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Associated Date", "values": [{"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.607+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.607+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.607+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.607+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.61+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.61+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.61+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.61+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.61+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.61+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.61+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.61+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.61+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.61+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.61+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.61+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.61+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38.61+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_DATE", "data_length": 10, "description": "Associated Date", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.STATE", "name": "Global/Local", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "GLOBAL"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO_NOTNULL", "facetable": true, "searchable": true, "table_name": "FERRERO_IC_ASSET_DETAILS", "column_name": "ASSET_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.ASPECT RATIO", "name": "Aspect Ratio (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio (Marketing)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASPECT_RATIO", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASPECT_RATIO", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "name": "Tag (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1222, "metadata_element_list": [{"id": "MARKETING_TAG", "name": "Marketing Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Marketing Tag", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.DOMAIN.TAG", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TAG_MARKET", "column_name": "TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "parent_table_name": "Tag (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.TAGS", "name": "Auto-Generated Tags", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Auto-Generated Tags", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "AUTO_GENERATED_TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CERTIFIER", "name": "Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approver", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.MARKETING.FIELD.APPROVAL DATE", "name": "Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.CERTIFIER COMMENT", "name": "Approver Comment", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approver Comment", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "CERTIFIER_COMMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.LEGAL CERTIFER", "name": "Legal Certifier", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "User, Legal IA&CC (Local Legal IA&CC, active)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal Certifier", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "LEGAL_CERTIFIER_MARKETING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.LEGAL APPROVAL DATE", "name": "Legal Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-11-05T00:00:00+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.LEGAL COMMENT", "name": "Legal Comment", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": ", "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal Comment", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_COMMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CERTIFIER", "name": "IA&CC Certifier", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "User, Legal IA&CC (Local Legal IA&CC, active)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Certifier", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CC APPROVAL DATE", "name": "IA&CC Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-11-05T00:00:00+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CC COMMENT", "name": "IA&CC Comment", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "c8c5e34bc384c3dcc5fe06b91b6e0cfec2786f77=#SPLIT#43009b2ba8204f56f4b38a31a53aea735ade049f="}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Comment", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_COMMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "name": "Extended Approval", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1230, "metadata_element_list": [{"id": "FERRERO.FIELD.EXTENDED.APPROVAL", "name": "Extended Approval required by:", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended Approval required by:", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COMMENTS", "name": "Comment", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comment", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "COMMENTS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.DATE", "name": "Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USERS", "name": "User ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "User ID", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "USERS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXTENDED.JOBID", "name": "Extended JobID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended JobID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.MIGRATION.INDEX", "name": "Migration Index", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Migration Index", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MIGRATION.INDEX", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MIGRATION_INDEX", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "FERRERO_MARKET_MARKETING_CREATOR", "name": "Marketing Creator", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Marketing Creator", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.CREATOR", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MARKETING_CREATOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "ARTESIA.FIELD.IS LATEST VERSION", "name": "Is Latest Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Y"}, "display_value": "Yes", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Is Latest Version", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.YES_NO", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "IS_LATEST_VERSION", "data_length": 1, "description": "Is this the latest version? (Y/N)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET VERSION", "name": "Asset Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 1}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Version", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "INTEGER", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "VERSION", "data_length": 12, "description": "Version number of asset", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET_ID", "name": "Asset ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "747110b96dede761a445a3bf0c90f13bb38024fa"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset ID", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "LOGICAL_UOI_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.ECOMMERCE STATUS", "name": "Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "TO BE APPROVED"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Status", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "ASSET_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CREATOR", "name": "Uploaded by", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Uploaded by", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_USER_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.FIELD.CREATION DATE", "name": "Upload Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-10-31T16:39:58.037+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Upload Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_DT", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.ASSET NAME", "name": "Asset Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "nutella pbased.jpg"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Name", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "description": "Original name of master object", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.CONTENT TYPE", "name": "Content Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "BITMAP"}, "display_value": "Image", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Type", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.CONTENT_TYPES", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "CONTENT_TYPE", "data_length": 8, "description": "Content Type", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.MIME TYPE", "name": "File Extension", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "image/jpeg"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Extension", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_MIME_TYPE", "data_length": 80, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.FILE.SIZE", "name": "File Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "long", "value": 5000}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Size", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "LONG", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_SIZE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP RESOLUTION", "name": "Bitmap Resolution", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 72}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Resolution", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_RESOLUTION", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP WIDTH", "name": "Bitmap Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 203}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Width", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_WIDTH", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP HEIGHT", "name": "Bitmap Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 249}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Height", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_HEIGHT", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.VIDEO.BIT_RATE", "name": "Bitrate", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitrate", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "BIT_RATE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.EMBEDDED.FIELD.DURATION", "name": "Duration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Duration", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "DURATION_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.ASPECT RATIO", "name": "Aspect Ratio", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "ASPECT_RATIO", "data_length": 30, "displayable": false, "instructions": "ASPECT_RATIO", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME HEIGHT", "name": "Frame Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Height", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_HEIGHT", "data_length": 12, "displayable": true, "instructions": "FRAME_HEIGHT", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME WIDTH", "name": "Frame Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Width", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_WIDTH", "data_length": 12, "displayable": true, "instructions": "FRAME_WIDTH", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.ASPECT.RATIO.POC", "name": "Aspect Ratio(POC)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "4:5"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio(POC)", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASPECT_RATIO_TABLE", "column_name": "ASPECT_RATIO", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "PRODUCT.DETAILS", "name": "Product Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200029, "metadata_element_list": [{"id": "FERRERO.TABLE.EANCODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1208, "metadata_element_list": [{"id": "EAN_CODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "EAN CODE/ 77 CODE", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "EAN.CODE", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "EAN_CODE", "column_name": "EAN_CODE_DESCRIPTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "COUNTRY", "name": "COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "EAN_CODE", "column_name": "COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.SUB BRAND", "name": "Sub-Brands", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Sub-Brands", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.SUBBRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "SUB_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT WEIGHT", "name": "Product Weight", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Weight", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_WEIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.CONSUMER UNIT PACKAGING", "name": "Consumer Unit Packaging", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Consumer Unit Packaging", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PACK", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "CONSUMER_UNIT_PACKAGING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.4 DIGIT CODE", "name": "4 Digit Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "4 Digit Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "DIGITCODE", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERREO.ECOM.RETAILER_SPECIFIC_FIELD", "name": "Retailer Specific", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Retailer Specific", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "RETAILER_SPECIFIC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "cascading_group_id": "FERRERO.RETAILER.SPECIFIC", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY END PERIOD", "name": "Asset validity end period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity end period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_ENDING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT VIEW", "name": "Product View", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product View", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT VIEW", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_VIEW", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT ANGLE", "name": "Product Angle", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Angle", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT.ANGLE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_ANGLE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT STATE", "name": "Product State", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product State", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT STATE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PROMOTION ID", "name": "Promo ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Promo ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROMO_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200048, "metadata_element_list": []}, {"id": "FERRERO.FIELD.CREATIX", "name": "CreativeX", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200059, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.CREATIVEX", "name": "Confidence", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1245, "metadata_element_list": [{"id": "FERRERO.TAB.FIELD.CREATIVEX", "name": "Platform > Rating (%)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Platform > Rating (%)", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_CREATIVEX", "column_name": "CREATIVEX_NEW", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CREATIVEX", "parent_table_name": "Confidence", "cascading_group_id": "FERRERO.CREATIVEX.CHAR", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.CREATIVEX LINK", "name": "CreativeX Hyperlink", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "CreativeX Hyperlink", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_CREATIVEX", "column_name": "CREATIVE_LINK", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.IP_RIGHTS", "name": "IP Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200046, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.IPRIGHT", "name": "IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "IP Rights", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.IPRIGHTS", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IP_RIGHTS", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.BUYOUT", "name": "Touchpoint Scope", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Touchpoint Scope", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.TOTAL_BUYOUT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TOTAL_BUYOUT", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.FERRERO PROPERTY", "name": "Ferrero Property", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Ferrero Property", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.FERRERO_PROPERTY", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FERRERO_PROPERTY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200035, "metadata_element_list": []}, {"id": "FERRERO.MARKET.VID_STAT_RIGHT", "name": "Video & Static Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200047, "metadata_element_list": [{"id": "FERRERO.MARKET.VID_N_STAT", "name": "Video and Static Right", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Video and Static Right", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VID_AND_STAT_RIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.VID_STAT_TYPE", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1221, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.TYPE_VID", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Video & Static Right", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TYPE_VID_STAT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_MARKET_TYPE_VID_STAT", "column_name": "TYPE_OF_VIDEO_STATIC_RIGHT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.VID_STAT_TYPE", "parent_table_name": "Type of Video & Static Right", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKET.PROD_COMPANY", "name": "Production House", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Production House", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.PRODUCT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200050, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.LICENSIN", "name": "Licensing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Licensing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSING", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "cascading_group_id": "FERRERO.MARKET.CG.LICENSE", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.SPOT_DETAILS", "name": "Spot Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200049, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.SPOT_VERSION", "name": "Spot Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Version", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_VERSION", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_VERSION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.SPOT_TYPE", "name": "Spot Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_TYPE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.DIRECTOR_NAME", "name": "Director Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Director Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "DIRECTOR_NAME", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VIDEO_POST_PROD_COMPANY", "name": "Video Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VID_POST_PROD_CONTACT", "name": "Video Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_COMPANY", "name": "Audio Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_CONTACT", "name": "Audio Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.BROADCASTER.CODE", "name": "Broadcaster Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Broadcaster Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BROADCASTER_CODE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.TECHNICAL_VALIDATION", "name": "Technical Validation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Technical Validation", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TECHNICAL_VALIDATION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS", "name": "Media Analysis", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1002, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES COUNT", "name": "Faces Count", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Faces Count", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACECOUNT", "column_name": "COUNT", "data_length": 10, "description": "Faces Count", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "name": "Face Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 106, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME", "name": "Recognized Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME", "data_length": 2000, "description": "Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME CONFIDENCE", "name": "Recognized Name Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME_CONFIDENCE", "data_length": 10, "description": "Name Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE", "name": "Person Age", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE", "data_length": 10, "description": "Person Age", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE CONFIDENCE", "name": "Person Age Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Person Age Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_CONFIDENCE", "data_length": 10, "description": "Person Age Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER", "name": "Gender", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Gender", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.GENDER", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER", "data_length": 40, "description": "Gender", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER CONFIDENCE", "name": "Gender Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Gender Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER_CONFIDENCE", "data_length": 10, "description": "Gender Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.FACE COORDS", "name": "Face Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "FACE_COORDS", "data_length": 200, "description": "Face Coordinates like postion, height,width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE GROUP", "name": "Person Age Group", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age Group", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.AGE GROUP", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_GROUP", "data_length": 10, "description": "Person Age Group", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.ISBW", "name": "Is Black and White", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "false"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Is Black and White", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "ISBW", "data_length": 10, "description": "Is Black and White", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "name": "Image Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 110, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.IMAGE TYPE", "name": "Analysis Image Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "clip_art"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Analysis Image Type", "values": [{"value": {"type": "string", "value": "clip_art"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_IMAGE_TYPE", "column_name": "TYPE", "data_length": 100, "description": "Image Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "parent_table_name": "Image Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.DATE", "name": "Date: Media Analysis", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-10-31T16:40:38+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date: Media Analysis", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MEDIA_ANALYSIS_DATE", "data_length": 25, "description": "Date Media Analysis was done on the asset.", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false}]}, {"id": "HYBRIS.PRODUCT.INFO", "name": "PIM Item Reference", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200027, "metadata_element_list": [{"id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "name": "Hybris Item Reference", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1206, "metadata_element_list": [{"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ID", "name": "Hybris Item ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ID", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT TAG NAME", "name": "Hybris Assignment Label", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Assignment Label", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_TAG_NAME", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ATTRIBUTE NAME", "name": "Hybris Attribute Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Attribute Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ATTRIBUTE_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT CATALOG NAME", "name": "Hybris Catalog Mnemonic", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Catalog Mnemonic", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_CATALOG_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT PK", "name": "Hybris Item PK", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item PK", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_PK", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.SYSTEM ID", "name": "Hybris System ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris System ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "SYSTEM_ID", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.ASSIGNED", "name": "Assigned", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Assigned", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "ASSIGNED", "column_name": "ASSIGNED", "data_length": 38, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PIM TYPE", "name": "PIM Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "PIM Type", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_PIM_TYPE", "column_name": "PIM_TYPE", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS VIDEO", "name": "Media Analysis Video", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1003, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "name": "Labels", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 113, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.ID", "name": "Label Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "ID", "data_length": 40, "description": "Label Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.NAME", "name": "Label Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "NAME", "data_length": 40, "description": "Label Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.APPEARANCES", "name": "Label Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "APPEARANCES", "data_length": 0, "description": "Label Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "name": "Sentiments", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 114, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.ID", "name": "Sentiment Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "ID", "data_length": 40, "description": "Sentiment Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.NAME", "name": "Sentiment Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "NAME", "data_length": 40, "description": "Sentiment Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.APPEARANCES", "name": "Sentiment Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "APPEARANCES", "data_length": 0, "description": "Sentiment Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.SEEN.DURATION.RATIO", "name": "Sentiment Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Sentiment Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "name": "Keywords", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 115, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.ID", "name": "Keyword Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "ID", "data_length": 40, "description": "Keyword Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.NAME", "name": "Keyword Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "NAME", "data_length": 40, "description": "Keyword Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.APPEARANCES", "name": "Keyword Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Keyword Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "name": "Faces", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 111, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.ID", "name": "Face Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "ID", "data_length": 40, "description": "Face Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.NAME", "name": "Face Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "NAME", "data_length": 40, "description": "Face Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.TITLE", "name": "Face Title", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Title", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "TITLE", "data_length": 249, "description": "Face Title", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.DESCRIPTION", "name": "Face Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Face Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.APPEARANCES", "name": "Face Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "APPEARANCES", "data_length": 0, "description": "Face Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SPEAKER.FACE.ID", "name": "Video Speaker Object Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Speaker Object Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "THUMBNAIL_OBJECT_ID", "data_length": 40, "description": "Video Speaker Object Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.SEEN.DURATION.RATIO", "name": "Face Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "SEEN_DURATION_RATIO", "data_length": 20, "description": "Face Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "name": "Brands", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 112, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.ID", "name": "Video Brand Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "ID", "data_length": 40, "description": "Brand Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.NAME", "name": "Video Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Brand Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.DESCRIPTION", "name": "Video Brand Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Brand Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.WIKIURL", "name": "Video Brand Wiki URL", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Wiki URL", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "WIKIURL", "data_length": 200, "description": "Brand Wiki URL", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.APPEARANCES", "name": "Video Brand Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Brand Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.SEEN.DURATION.RATIO", "name": "Video Brand Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Brand Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "name": "Speeches", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 116, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.ID", "name": "SpeechText Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "SpeechText Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "ID", "data_length": 40, "description": "SpeechText Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXT", "name": "Speech Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Text", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXT", "data_length": 1000, "description": "Speech Text", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXTTYPE", "name": "Speech Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXTTYPE", "data_length": 40, "description": "Speech Type", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.START TIME", "name": "Speech Start Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Start Time", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "START_TIME", "data_length": 40, "description": "Speech Start Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.END TIME", "name": "Speech End Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech End Time", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "END_TIME", "data_length": 40, "description": "Speech End Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "name": "Speakers", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 122, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.ID", "name": "Speaker Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "ID", "data_length": 40, "description": "Speaker Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.NAME", "name": "Speaker Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "NAME", "data_length": 100, "description": "Speaker Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.APPEARANCES", "name": "Speaker Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "APPEARANCES", "data_length": 0, "description": "Speaker Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.FIELDGROUP.LOCALASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200057, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1239, "metadata_element_list": [{"id": "FERRERO.FIELD.COUNTRY", "name": "LOCAL COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "LOCAL COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USER", "name": "USER", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "USER", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_USER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.ASSOCIATION", "name": "TYPE OF ASSOCIATION", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "TYPE OF ASSOCIATION", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_ASSOCIATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.VALUE", "name": "VALUE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "VALUE", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_VALUE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}], "has_multilingual_fields": false}, "mime_type": "image/jpeg", "path_list": [{"parents": [{"id": "50e4b3e99601b02fda1162b949073a158c06a427", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "50e4b3e99601b02fda1162b949073a158c06a427", "sequence_number": 0}, {"id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "name": "CONTENT SCALING 1234", "container_state": "NORMAL", "original_uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "sequence_number": 0}, {"id": "54ace5951af483836f95b6d4c69759d10e1eb12f", "name": "02.Campaigns", "container_state": "NORMAL", "original_uoi_id": "54ace5951af483836f95b6d4c69759d10e1eb12f", "sequence_number": 0}, {"id": "1638869b9b347c39842effc7e5ff965de47e8e65", "name": "01.Standard", "container_state": "NORMAL", "original_uoi_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "sequence_number": 0}, {"id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "name": "01.Poland", "container_state": "NORMAL", "original_uoi_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "sequence_number": 0}, {"id": "341bbf240ea033435cc225cd1add5c009bc067d7", "name": "PL", "container_state": "NORMAL", "original_uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "sequence_number": 0}, {"id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "name": "01. PL - Nutella", "container_state": "NORMAL", "original_uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "sequence_number": 0}, {"id": "5353bb35177d792b073acc634e010df2908fde32", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "0c30edd40569bc215307f7215ab86cbd8fac163b", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "0c30edd40569bc215307f7215ab86cbd8fac163b", "sequence_number": 0}, {"id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "name": "CONTENT SCALING XX", "container_state": "NORMAL", "original_uoi_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "sequence_number": 0}, {"id": "54ace5951af483836f95b6d4c69759d10e1eb12f", "name": "02.Campaigns", "container_state": "NORMAL", "original_uoi_id": "54ace5951af483836f95b6d4c69759d10e1eb12f", "sequence_number": 0}, {"id": "1638869b9b347c39842effc7e5ff965de47e8e65", "name": "01.Standard", "container_state": "NORMAL", "original_uoi_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "sequence_number": 0}, {"id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "name": "01.Poland", "container_state": "NORMAL", "original_uoi_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "sequence_number": 0}, {"id": "341bbf240ea033435cc225cd1add5c009bc067d7", "name": "PL", "container_state": "NORMAL", "original_uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "sequence_number": 0}, {"id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "name": "01. PL - Nutella", "container_state": "NORMAL", "original_uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "sequence_number": 0}, {"id": "5353bb35177d792b073acc634e010df2908fde32", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "4c1c7f196a1c3ed92b46d235cb565892ef92e843", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "4c1c7f196a1c3ed92b46d235cb565892ef92e843", "sequence_number": 0}, {"id": "0782f78ca6fe95281660f0299a8a28c526628c95", "name": "CONTENT SCALING OLIVER TEST 3", "container_state": "NORMAL", "original_uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "sequence_number": 0}, {"id": "f389599295d557119a440c04d15b17f1b6e59107", "name": "Campaigns", "container_state": "NORMAL", "original_uoi_id": "f389599295d557119a440c04d15b17f1b6e59107", "sequence_number": 0}, {"id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "name": "DE", "container_state": "NORMAL", "original_uoi_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "sequence_number": 0}, {"id": "5353bb35177d792b073acc634e010df2908fde32", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "251d8b8f1089c9f08cf282832453f0f6ccca00f1", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "251d8b8f1089c9f08cf282832453f0f6ccca00f1", "sequence_number": 0}, {"id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "name": "NUTELLA PLANT-BASED LAUNCH", "container_state": "NORMAL", "original_uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "sequence_number": 0}, {"id": "413c776f4416163b88737d53bb72dfe23bfd2430", "name": "Global", "container_state": "NORMAL", "original_uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "50e4b3e99601b02fda1162b949073a158c06a427", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "50e4b3e99601b02fda1162b949073a158c06a427", "sequence_number": 0}, {"id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "name": "Oliver Sharing", "container_state": "NORMAL", "original_uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "sequence_number": 0}, {"id": "23b155c32d5c6142914b41458234c100812bbec8", "name": "Oliver", "container_state": "NORMAL", "original_uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "sequence_number": 0}, {"id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "name": "Z - Exchange", "container_state": "NORMAL", "original_uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "4c1c7f196a1c3ed92b46d235cb565892ef92e843", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "4c1c7f196a1c3ed92b46d235cb565892ef92e843", "sequence_number": 0}, {"id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "name": "Oliver Sharing", "container_state": "NORMAL", "original_uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "sequence_number": 0}, {"id": "23b155c32d5c6142914b41458234c100812bbec8", "name": "Oliver", "container_state": "NORMAL", "original_uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "sequence_number": 0}, {"id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "name": "Z - Exchange", "container_state": "NORMAL", "original_uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}], "creator_id": "1003", "asset_state": "NORMAL", "checked_out": false, "folder_path": "", "content_size": 5000, "content_type": "BITMAP", "content_state": "NORMAL", "date_imported": "2025-10-31T16:39:58.037+01:00", "import_job_id": 214972, "subscribed_to": false, "collection_ids": [], "latest_version": true, "legacy_model_id": 116, "content_editable": true, "import_user_name": "bizAdmin", "date_last_updated": "2025-11-05T12:08:52.673+01:00", "metadata_model_id": "ECOMMERCE", "original_asset_id": "747110b96dede761a445a3bf0c90f13bb38024fa", "rendition_content": {"preview_content": {"id": "a5608ee8058228c10a407fbfcc00efe0a6ebe0ef", "url": "/otmmapi/v6/renditions/a5608ee8058228c10a407fbfcc00efe0a6ebe0ef", "name": "nutella pbased-S.png", "width": 203, "height": 249, "mime_type": "image/png", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "PREVIEW", "content_path": "data\\\\repository\\\\screen\\\\vol0\\\\180\\\\nutella pbased-S_a5608ee8058228c10a407fbfcc00efe0a6ebe0ef.png", "content_size": 23906, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "thumbnail_content": {"id": "9543be3395c8f021749463e081c7915466ee847d", "url": "/otmmapi/v6/renditions/9543be3395c8f021749463e081c7915466ee847d", "name": "nutella pbased-T.png", "width": 203, "height": 249, "mime_type": "image/png", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "THUMBNAIL", "content_path": "data\\\\repository\\\\thumb\\\\vol0\\\\195\\\\nutella pbased-T_9543be3395c8f021749463e081c7915466ee847d.png", "content_size": 23906, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_content_info": {"master_content": {"id": "b89909f751facf935dceb729a141fee657575a74", "url": "/otmmapi/v6/renditions/b89909f751facf935dceb729a141fee657575a74", "name": "nutella pbased.jpg", "width": 203, "height": 249, "mime_type": "image/jpeg", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\220\\\\nutella pbased_b89909f751facf935dceb729a141fee657575a74.jpg", "content_size": 5000, "unit_of_size": "BYTES", "content_checksum": "2e5fec19952ccaac976f13f88b3ef32d", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_state_user_id": "1001", "master_content_info": {"id": "b89909f751facf935dceb729a141fee657575a74", "url": "/otmmapi/v6/renditions/b89909f751facf935dceb729a141fee657575a74", "name": "nutella pbased.jpg", "width": 203, "height": 249, "mime_type": "image/jpeg", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\220\\\\nutella pbased_b89909f751facf935dceb729a141fee657575a74.jpg", "content_size": 5000, "unit_of_size": "BYTES", "content_checksum": "2e5fec19952ccaac976f13f88b3ef32d", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "delivery_service_url": "https://ppr.dam.ferrero.com/adaptivemedia/rendition?id=747110b96dede761a445a3bf0c90f13bb38024fa", "product_associations": false, "security_policy_list": [{"id": 7534, "name": "Nutella Global Editable Nutella Core", "status": "NORMAL", "created_by": "1003", "create_date": "2023-12-15T17:39:27.973+01:00", "description": "Nutella Global Editable Nutella Core", "ownership_type": "PUBLIC"}, {"id": 11338, "name": "Oliver Editable", "status": "NORMAL", "created_by": "1003", "create_date": "2025-10-29T10:16:15.733+01:00", "description": "Oliver Editable", "ownership_type": "PUBLIC"}], "thumbnail_content_id": "9543be3395c8f021749463e081c7915466ee847d", "content_state_user_id": "1003", "content_state_user_name": "OTMM BusinessAdmin", "asset_lock_state_user_id": "1001", "metadata_state_user_name": "otmm admin", "access_control_descriptor": {"permissions_map": {"entry": [{"key": "text.securityPolicy.permission.Custom04Permission", "value": true}, {"key": "text.securityPolicy.permission.ContentEditPermission", "value": true}, {"key": "text.securityPolicy.permission.AssetViewPermission", "value": true}, {"key": "text.securityPolicy.permission.ProjectViewPermission", "value": true}, {"key": "text.securityPolicy.permission.MembershipEditPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom03Permission", "value": true}, {"key": "text.securityPolicy.permission.MetaDataEditPermission", "value": true}, {"key": "text.securityPolicy.permission.EditParentsPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom02Permission", "value": true}, {"key": "text.securityPolicy.permission.ExportPermission", "value": true}, {"key": "text.securityPolicy.permission.SummaryViewPermission", "value": true}, {"key": "text.securityPolicy.permission.PreviewViewPermission", "value": true}, {"key": "text.securityPolicy.permission.SubscribePermission", "value": true}, {"key": "text.securityPolicy.permission.DeleteAssetPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom01Permission", "value": true}]}}, "content_lock_state_user_id": "1003", "asset_state_last_update_date": "2025-11-05T12:08:52.673+01:00", "content_lock_state_user_name": "bizAdmin", "metadata_lock_state_user_name": "tsuper", "content_state_last_update_date": "2025-10-31T16:39:58.203+01:00", "inherited_metadata_collections": [{"container_id": "50e4b3e99601b02fda1162b949073a158c06a427", "container_name": "00. Master Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "50e4b3e99601b02fda1162b949073a158c06a427", "originator_id": "50e4b3e99601b02fda1162b949073a158c06a427", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00. Master Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "container_name": "CONTENT SCALING 1234", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CONTENT SCALING 1234"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000564"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CONTENT_SCALING_12_JV_LA_MLT_NUT_0000564"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local adaptation of global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000138"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Brand", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Market", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2024/2025"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2792"}, "display_value": "N/A, adminuser (adminuser, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2792"}, "display_value": "N/A, adminuser (adminuser, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2792"}, "display_value": "N/A, adminuser (adminuser, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2792"}, "display_value": "N/A, adminuser (adminuser, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "originator_id": "0f217df9340f11c8454f3ad8dd9c93c827867041", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "A3"}, "display_value": "Localized Asset received from Agency", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "54ace5951af483836f95b6d4c69759d10e1eb12f", "container_name": "02.Campaigns", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "54ace5951af483836f95b6d4c69759d10e1eb12f", "originator_id": "54ace5951af483836f95b6d4c69759d10e1eb12f", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "02.Campaigns"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "container_name": "01.Standard", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "originator_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "01.Standard"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "container_name": "01.Poland", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "originator_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "01.Poland"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "container_name": "PL", "container_type_id": "GLOBALMARKETUNIT", "container_type_name": "L6 - MARKET UNIT", "inherited_metadata_values": [{"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "b94dd71b732e3c1df6ae63216c53d4d4b0e7f002"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E39"}, "display_value": "POLAND", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "container_name": "01. PL - Nutella", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "5efe2981e6f9afca7ed3fc91a171f02162ef23e3"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E008"}, "display_value": "POLAND", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0de507c8b9d1f5942b6376b6c2a2b3ec1097e42e"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "5353bb35177d792b073acc634e010df2908fde32", "container_name": "EU", "container_type_id": "GEOGRAPHYLOCAL", "container_type_name": "L4 - GEOGRAPHY LOCAL", "inherited_metadata_values": [{"id": "FERRERO.MARKET.FOLDER.GLOBAL", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "4c4d4bf36bf8b1ace55f990e78d6332a9cb20990"}, "metadata_element": {"id": "FERRERO.MARKET.FOLDER.GLOBAL", "name": "Global/Local (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "LOCAL"}, "display_value": "Local", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local (Marketing)", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "GLOBALLOCAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_AREA", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "3dc200c993ab8263952dc6da1498026f615f45dd"}, "metadata_element": {"id": "MARKETING_AREA", "name": "AREA", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E010"}, "display_value": "EUROPE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "AREA", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "AREA", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "AREA", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "dc7749c3e113ec9e0b9e9a3840ea55673ca5e49f"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "f2d658a3829c2ea158ae70a4b4e7928bcf88f8e2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "container_name": "Nutella", "container_type_id": "GLOBALBRAND", "container_type_name": "L3 - BRAND", "inherited_metadata_values": [{"id": "FERRERO.TABULAR.NEW.BRAND", "tabular": true, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "9bb1c183135f5240f09132aef59c4ea48c762381"}, "metadata_element": {"id": "FERRERO.TABULAR.NEW.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF30"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND (Marketing)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF30"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "BRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TABULAR_BRAND", "column_name": "BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.NEW.BRAND", "parent_table_name": "BRAND (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "tabular": true, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "a37b13c02cba799378211e17b73234a0d836f9b6"}, "metadata_element": {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "JV"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND(HARMONIZED)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "JV"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.HARMONIZEDBRAND", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_HARMONIZEDBRAND", "column_name": "HARMONIZEDBRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.HARMONIZEDBRAND", "parent_table_name": "BRAND(HARMONIZED)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "container_name": "01. Nutella Core", "container_type_id": "GLOBALSUBCATEGORY", "container_type_name": "L2 - SUBCATEGORY", "inherited_metadata_values": [{"id": "MARKETING_SUBCATEGORY", "tabular": false, "value_id": {"uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "originator_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "inherited_field_id": "3000ad591e09b5c75f85fc2ccbb9ebeb31b3ab78"}, "metadata_element": {"id": "MARKETING_SUBCATEGORY", "name": "SUBCATEGORY", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Mart-Nutella-Core"}, "display_value": "Nutella Core", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "SUBCATEGORY", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "SUBCATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "SUBCATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "tabular": true, "value_id": {"uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "originator_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "inherited_field_id": "2c751ce760d88c0e271925ea5149348106944bfa"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Subcategory Owner", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_SUBCATEGORY_OWNER_TM", "column_name": "SUBCATEGORY_OWNER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "parent_table_name": "Subcategory Owner", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "container_name": "Nutella", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "originator_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E04"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "0c30edd40569bc215307f7215ab86cbd8fac163b", "container_name": "00. Master Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "0c30edd40569bc215307f7215ab86cbd8fac163b", "originator_id": "0c30edd40569bc215307f7215ab86cbd8fac163b", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00. Master Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "container_name": "CONTENT SCALING XX", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "originator_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CONTENT SCALING XX"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "originator_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000566"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "originator_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CONTENT_SCALING_XX_JV_LA_MLT_NUT_0000566"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "originator_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "originator_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "originator_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local adaptation of global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "originator_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000138"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "originator_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Brand", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "originator_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Market", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "originator_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2024/2025"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "originator_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "originator_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "originator_id": "9eaf88a8abe9e971a716c473dd50f72e3c3c4313", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "A5"}, "display_value": "Rework needed from Agency", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "4c1c7f196a1c3ed92b46d235cb565892ef92e843", "container_name": "00. Master Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "4c1c7f196a1c3ed92b46d235cb565892ef92e843", "originator_id": "4c1c7f196a1c3ed92b46d235cb565892ef92e843", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00. Master Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "container_name": "CONTENT SCALING OLIVER TEST 3", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CONTENT SCALING OLIVER TEST 3"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000551"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CONTENT_SCALING_OLI_JV_LA_DE_NUT_0000551"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local adaptation of global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000068"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Brand", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Market", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2025/2026"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2821"}, "display_value": "N/A, Krithiha (Krithiha, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2821"}, "display_value": "N/A, Krithiha (Krithiha, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2821"}, "display_value": "N/A, Krithiha (Krithiha, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2821"}, "display_value": "N/A, Krithiha (Krithiha, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "originator_id": "0782f78ca6fe95281660f0299a8a28c526628c95", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "A1"}, "display_value": "Local Campaign ready for localization", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "f389599295d557119a440c04d15b17f1b6e59107", "container_name": "Campaigns", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "f389599295d557119a440c04d15b17f1b6e59107", "originator_id": "f389599295d557119a440c04d15b17f1b6e59107", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Campaigns"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "container_name": "DE", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "originator_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "inherited_field_id": "5efe2981e6f9afca7ed3fc91a171f02162ef23e3"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E006"}, "display_value": "GERMANY", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "originator_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Local DE Editable Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "originator_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Nutella Local DE Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "originator_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "originator_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "inherited_field_id": "0de507c8b9d1f5942b6376b6c2a2b3ec1097e42e"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E64"}, "display_value": "GERMANY", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "originator_id": "cd17e5f8124c3336d875f1f086b4124a545a05a2", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local comm on global brands"}, "display_value": "Local comm on global brands", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local comm on global brands"}, "display_value": "Local comm on global brands", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "251d8b8f1089c9f08cf282832453f0f6ccca00f1", "container_name": "05. Final Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "251d8b8f1089c9f08cf282832453f0f6ccca00f1", "originator_id": "251d8b8f1089c9f08cf282832453f0f6ccca00f1", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "05. Final Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "container_name": "NUTELLA PLANT-BASED LAUNCH", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA PLANT-BASED LAUNCH"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000068"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "GL_FY25_NUT_30_NUTELLA_PLANT_00068"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Brand", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Market", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Global comm024/2025"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2821"}, "display_value": "N/A, Krithiha (Krithiha, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2821"}, "display_value": "N/A, Krithiha (Krithiha, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2821"}, "display_value": "N/A, Krithiha (Krithiha, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2821"}, "display_value": "N/A, Krithiha (Krithiha, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "originator_id": "676f2bcde4c7bcf7ef783e97f7495069bf50b6bc", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "B2"}, "display_value": "Master campaign received from Agency", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "container_name": "Global", "container_type_id": "GEOGRAPHYGLOBAL", "container_type_name": "L4 - GEOGRAPHY GLOBAL", "inherited_metadata_values": [{"id": "FERRERO.MARKET.FOLDER.GLOBAL", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "963db123044a8d3ff5d8f4aac56d35df77a7656c"}, "metadata_element": {"id": "FERRERO.MARKET.FOLDER.GLOBAL", "name": "Global/Local (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "GLOBAL"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local (Marketing)", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "GLOBALLOCAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_AREA", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "3a37ace6a53a93799e0e18773ba6c7e70305cc78"}, "metadata_element": {"id": "MARKETING_AREA", "name": "AREA", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AREA", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "AREA", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "AREA", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "9f64f884b41d2a8445f4d9cd60714e91024e8b13"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Global Editable Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "8847a6dfbebcf323a8170649b390af1a375c08b8"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Nutella Global Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "758e614412f11ecb58446966d328974daf253446"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "53df9e81ae46cf6bd2440643426224b1fb904aeb"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "name": "Published Security Policy - Restricted Visibility", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Global Published Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Security Policy - Restricted Visibility", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_VISIBILITY_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "0fbcf70c95f5d28645e7a6187f7c429d62e60380"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Global comm"}, "display_value": "Global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Global comm"}, "display_value": "Global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "container_name": "Oliver Sharing", "container_type_id": "L3 - Agency Structure", "container_type_name": "L3 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "55530f721f18c847e35d7c828edf53461b5014b0"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "330bb6f68316aab5c45f9fe34e047cce573c67cc"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "name": "Agency Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "AGENCY_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "e30e90d694f9935d4c15c4c78891beed8853a272"}, "metadata_element": {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "name": "Published Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "PUBLISHED_ASSET_SP_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "23b155c32d5c6142914b41458234c100812bbec8", "container_name": "Oliver", "container_type_id": "L2 - Agency Structure", "container_type_name": "L2 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.AGENCY", "tabular": false, "value_id": {"uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "originator_id": "23b155c32d5c6142914b41458234c100812bbec8", "inherited_field_id": "48fcbc397986aca5bb8722a95197dd0a46f19b4e"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_AGENCY", "column_name": "AGENCY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "container_name": "Z - Exchange", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "YY"}, "display_value": "AGENCIES", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}], "asset_lock_state_last_update_date": "2025-11-05T12:08:52.677+01:00", "content_lock_state_last_update_date": "2025-10-31T16:39:59.727+01:00"} \N \N active f \N \N 2025-11-13 17:07:53.487139 2025-11-13 17:07:53.487139 2025-11-13 17:07:53.487139 4 p3yZR6 c2909a205fd85472f291f4ec42222c81eeb76e7c 250924HR-STEMS-17h36-NutellaWeihnachtenShareTheLove15s-ATMOBUS .wav \N audio/x-wav \N \N \N \N \N \N \N \N \N \N \N \N \N C000000576 847c0ede25c32edd97546221fe54fb392431848d C000000599 95c935af7e32719e82ee47bcae9cf772c01b51fa Box File ID: 2052719269520\nBox URL: https://app.box.com/file/2052719269520\nDAM Asset ID: c2909a205fd85472f291f4ec42222c81eeb76e7c {"name": "250924HR-STEMS-17h36-NutellaWeihnachtenShareTheLove15s-ATMOBUS.wav", "links": {"links": [], "source_id": "c2909a205fd85472f291f4ec42222c81eeb76e7c"}, "locked": false, "deleted": false, "expired": false, "version": 1, "asset_id": "c2909a205fd85472f291f4ec42222c81eeb76e7c", "metadata": {"id": "ECOMMERCE", "name": "Marketing Asset", "type": "com.artesia.metadata.MetadataModel", "legacy_id": 116, "metadata_element_list": [{"id": "FERRERO.CATEGORY.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200054, "metadata_element_list": [{"id": "FERRERO.FIELD.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Status", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.CONTENT_STATUS", "edit_type": "COMBO_NOTNULL", "facetable": false, "searchable": true, "table_name": "FERRERO_CONTENT_STATUS_MD", "column_name": "CONTENT_STATUS", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9215, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRER.CATEGORY.ASSET_INFO", "name": "Asset Info", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200022, "metadata_element_list": [{"id": "FERRERO.FIELD.MKTG.ASSET TYPE", "name": "Asset Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "tvc"}, "display_value": "TVC", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.ASSETTYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.FISCAL YEAR", "name": "Release Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2025/2026"}, "display_value": "2025/2026", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Release Fiscal Year", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_DOMAIN_FISCAL_YEAR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "FISCAL__YEAR", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "name": "Main Languages", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1210, "metadata_element_list": [{"id": "MAIN_LANGUAGES", "name": "MAIN LANGUAGES", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "MAIN LANGUAGES", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MAIN LAGUAGES_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MAIN_LANGUAGE_TABLE", "column_name": "MAIN_LANGUAGE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "parent_table_name": "Main Languages", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.ASSET DESCRIPTION", "name": "Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Audio file test"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Description", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "DESCR", "data_length": 249, "description": "Descriptive information", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.FLAVOUR", "name": "Flavour", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Flavour", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.FLAVOUR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FLAVOUR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.SIZE", "name": "Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Size", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.SIZE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SIZE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1241, "metadata_element_list": [{"id": "FERRERO.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Compliance", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ASSETCOMPLIANCE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_COMPLIANCE", "column_name": "ASSET_COMPLIANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "parent_table_name": "Asset Compliance", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.TAG DETAILS", "name": "Tag Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 118, "metadata_element_list": [{"id": "ARTESIA.FIELD.TAG", "name": "Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Tag", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.TAGS", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "OTMM_TAGS", "column_name": "TAG", "data_length": 80, "description": "Tag", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG CONFIDENCE", "name": "Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Confidence", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG TYPE", "name": "Tag Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Tag Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "TAG_TYPE", "data_length": 10, "description": "Tag Type", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED BY", "name": "Associated By", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Associated By", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_BY", "data_length": 10, "description": "Associated By", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED DATE", "name": "Associated Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Associated Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_DATE", "data_length": 10, "description": "Associated Date", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.STATE", "name": "Global/Local", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "GLOBAL"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO_NOTNULL", "facetable": true, "searchable": true, "table_name": "FERRERO_IC_ASSET_DETAILS", "column_name": "ASSET_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.ASPECT RATIO", "name": "Aspect Ratio (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio (Marketing)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASPECT_RATIO", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASPECT_RATIO", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "name": "Tag (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1222, "metadata_element_list": [{"id": "MARKETING_TAG", "name": "Marketing Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Marketing Tag", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.DOMAIN.TAG", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TAG_MARKET", "column_name": "TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "parent_table_name": "Tag (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.TAGS", "name": "Auto-Generated Tags", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Auto-Generated Tags", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "AUTO_GENERATED_TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CERTIFIER", "name": "Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approver", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.MARKETING.FIELD.APPROVAL DATE", "name": "Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.LEGAL APPROVAL DATE", "name": "Legal Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CERTIFIER", "name": "IA&CC Certifier", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Certifier", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CC APPROVAL DATE", "name": "IA&CC Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "name": "Extended Approval", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1230, "metadata_element_list": [{"id": "FERRERO.FIELD.EXTENDED.APPROVAL", "name": "Extended Approval required by:", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended Approval required by:", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COMMENTS", "name": "Comment", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comment", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "COMMENTS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.DATE", "name": "Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USERS", "name": "User ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "User ID", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "USERS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXTENDED.JOBID", "name": "Extended JobID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended JobID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.MIGRATION.INDEX", "name": "Migration Index", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Migration Index", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MIGRATION.INDEX", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MIGRATION_INDEX", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "FERRERO_MARKET_MARKETING_CREATOR", "name": "Marketing Creator", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Marketing Creator", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.CREATOR", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MARKETING_CREATOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "ARTESIA.FIELD.IS LATEST VERSION", "name": "Is Latest Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Y"}, "display_value": "Yes", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Is Latest Version", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.YES_NO", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "IS_LATEST_VERSION", "data_length": 1, "description": "Is this the latest version? (Y/N)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET VERSION", "name": "Asset Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 1}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Version", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "INTEGER", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "VERSION", "data_length": 12, "description": "Version number of asset", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET_ID", "name": "Asset ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "c2909a205fd85472f291f4ec42222c81eeb76e7c"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset ID", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "LOGICAL_UOI_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.ECOMMERCE STATUS", "name": "Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "PUBLISHED"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Status", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "ASSET_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CREATOR", "name": "Uploaded by", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Uploaded by", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_USER_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.FIELD.CREATION DATE", "name": "Upload Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-11-13T14:34:31.017+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Upload Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_DT", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.ASSET NAME", "name": "Asset Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "250924HR-STEMS-17h36-NutellaWeihnachtenShareTheLove15s-ATMOBUS.wav"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Name", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "description": "Original name of master object", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.CONTENT TYPE", "name": "Content Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "AUDIO"}, "display_value": "Audio", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Type", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.CONTENT_TYPES", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "CONTENT_TYPE", "data_length": 8, "description": "Content Type", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.MIME TYPE", "name": "File Extension", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "audio/x-wav"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Extension", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_MIME_TYPE", "data_length": 80, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.FILE.SIZE", "name": "File Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "long", "value": 4320080}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Size", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "LONG", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_SIZE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP RESOLUTION", "name": "Bitmap Resolution", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Resolution", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_RESOLUTION", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP WIDTH", "name": "Bitmap Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Width", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_WIDTH", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP HEIGHT", "name": "Bitmap Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Height", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_HEIGHT", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.VIDEO.BIT_RATE", "name": "Bitrate", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 0.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitrate", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "BIT_RATE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.EMBEDDED.FIELD.DURATION", "name": "Duration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00:00:15:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Duration", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "DURATION_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.ASPECT RATIO", "name": "Aspect Ratio", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "ASPECT_RATIO", "data_length": 30, "displayable": false, "instructions": "ASPECT_RATIO", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME HEIGHT", "name": "Frame Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Height", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_HEIGHT", "data_length": 12, "displayable": true, "instructions": "FRAME_HEIGHT", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME WIDTH", "name": "Frame Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Width", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_WIDTH", "data_length": 12, "displayable": true, "instructions": "FRAME_WIDTH", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.ASPECT.RATIO.POC", "name": "Aspect Ratio(POC)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio(POC)", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASPECT_RATIO_TABLE", "column_name": "ASPECT_RATIO", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "PRODUCT.DETAILS", "name": "Product Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200029, "metadata_element_list": [{"id": "FERRERO.TABLE.EANCODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1208, "metadata_element_list": [{"id": "EAN_CODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "EAN CODE/ 77 CODE", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "EAN.CODE", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "EAN_CODE", "column_name": "EAN_CODE_DESCRIPTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "COUNTRY", "name": "COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "EAN_CODE", "column_name": "COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKETING.ADVANCE.PRODUCT.LINK", "name": "Asset-to-product relation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset-to-product relation", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_MARKETING_ADVANCE_PRODUCT_LINK", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ADVANCE_PRODUCT_LINK", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 10182, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.SUB BRAND", "name": "Sub-Brands", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Sub-Brands", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.SUBBRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "SUB_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT WEIGHT", "name": "Product Weight", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Weight", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_WEIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.CONSUMER UNIT PACKAGING", "name": "Consumer Unit Packaging", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Consumer Unit Packaging", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PACK", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "CONSUMER_UNIT_PACKAGING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.4 DIGIT CODE", "name": "4 Digit Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "4 Digit Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "DIGITCODE", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERREO.ECOM.RETAILER_SPECIFIC_FIELD", "name": "Retailer Specific", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Retailer Specific", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "RETAILER_SPECIFIC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "cascading_group_id": "FERRERO.RETAILER.SPECIFIC", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY START PERIOD", "name": "Asset validity start period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity start period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_STARTING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY END PERIOD", "name": "Asset validity end period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity end period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_ENDING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.ASSET.NAMING.CONVENTION", "name": "Does asset need GS1 naming convention", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Does asset need GS1 naming convention", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASSETNAMINGCONVENTION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_NAMING_CONVENTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9515, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT VIEW", "name": "Product View", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product View", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT VIEW", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_VIEW", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT ANGLE", "name": "Product Angle", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Angle", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT.ANGLE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_ANGLE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT STATE", "name": "Product State", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product State", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT STATE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PROMOTION ID", "name": "Promo ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Promo ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROMO_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.BUSINESS.ASSET TYPE", "name": "Asset Type (eDAM)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Type (eDAM)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "OTMM.DOMAIN.OTMM_ASSETTYPE_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_BUSINESS_INFO", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7244, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200048, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.AGENCY NAME", "name": "Agency Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Oliver"}, "display_value": "Oliver", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Agency Name", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.AGENCY_NAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AGENCY_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7336, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.CREATIX", "name": "CreativeX", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200059, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.CREATIVEX", "name": "Confidence", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1245, "metadata_element_list": [{"id": "FERRERO.TAB.FIELD.CREATIVEX", "name": "Platform > Rating (%)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Platform > Rating (%)", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_CREATIVEX", "column_name": "CREATIVEX_NEW", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CREATIVEX", "parent_table_name": "Confidence", "cascading_group_id": "FERRERO.CREATIVEX.CHAR", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.CREATIVEX LINK", "name": "CreativeX Hyperlink", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "CreativeX Hyperlink", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_CREATIVEX", "column_name": "CREATIVE_LINK", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.IP_RIGHTS", "name": "IP Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200046, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.IPRIGHT", "name": "IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "IP Rights", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.IPRIGHTS", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IP_RIGHTS", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.BUYOUT", "name": "Touchpoint Scope", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Touchpoint Scope", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.TOTAL_BUYOUT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TOTAL_BUYOUT", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.FERRERO PROPERTY", "name": "Ferrero Property", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Ferrero Property", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.FERRERO_PROPERTY", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FERRERO_PROPERTY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200035, "metadata_element_list": [{"id": "FERRERO.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1209, "metadata_element_list": [{"id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "name": "IP Coverage, Area, Region & Market Unit", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Coverage, Area, Region & Market Unit", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "IPCOVERAGE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "cascading_group_id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHT TYPE", "name": "Copyright Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHT_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.MEDIATYPE", "name": "Media Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Media Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MEDIA_TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "MEDIA_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE FROM", "name": "Expiration of Usage - From", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - From", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_FROM", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE TO", "name": "Expiration of Usage - To", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - To", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_TO", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO._DURATION", "name": "IP Duration", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Duration", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "ECOM_DURATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHTTYPE DETAILS", "name": "Copyright Type Details", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type Details", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHTTYPE_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 6, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.MARKET.VID_STAT_RIGHT", "name": "Video & Static Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200047, "metadata_element_list": [{"id": "FERRERO.MARKET.VID_N_STAT", "name": "Video and Static Right", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Video and Static Right", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VID_AND_STAT_RIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.VID_STAT_TYPE", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1221, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.TYPE_VID", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Video & Static Right", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TYPE_VID_STAT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_MARKET_TYPE_VID_STAT", "column_name": "TYPE_OF_VIDEO_STATIC_RIGHT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.VID_STAT_TYPE", "parent_table_name": "Type of Video & Static Right", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKET.PROD_COMPANY", "name": "Production House", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Production House", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.PRODUCT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200050, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.LICENSIN", "name": "Licensing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Licensing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSING", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "cascading_group_id": "FERRERO.MARKET.CG.LICENSE", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.SPOT_DETAILS", "name": "Spot Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200049, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.SPOT_VERSION", "name": "Spot Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Version", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_VERSION", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_VERSION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.SPOT_TYPE", "name": "Spot Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_TYPE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.DIRECTOR_NAME", "name": "Director Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Director Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "DIRECTOR_NAME", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VIDEO_POST_PROD_COMPANY", "name": "Video Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VID_POST_PROD_CONTACT", "name": "Video Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_COMPANY", "name": "Audio Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_CONTACT", "name": "Audio Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.BROADCASTER.CODE", "name": "Broadcaster Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Broadcaster Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BROADCASTER_CODE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.TECHNICAL_VALIDATION", "name": "Technical Validation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Technical Validation", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TECHNICAL_VALIDATION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS", "name": "Media Analysis", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1002, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "name": "Categories", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 105, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY NAME", "name": "Category Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Category Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "NAME", "data_length": 100, "description": "Category Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY CONFIDENCE", "name": "Category Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Category Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "CONFIDENCE", "data_length": 10, "description": "Category Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES COUNT", "name": "Faces Count", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Faces Count", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACECOUNT", "column_name": "COUNT", "data_length": 10, "description": "Faces Count", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "name": "Face Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 106, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME", "name": "Recognized Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME", "data_length": 2000, "description": "Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME CONFIDENCE", "name": "Recognized Name Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME_CONFIDENCE", "data_length": 10, "description": "Name Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE", "name": "Person Age", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE", "data_length": 10, "description": "Person Age", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE CONFIDENCE", "name": "Person Age Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Person Age Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_CONFIDENCE", "data_length": 10, "description": "Person Age Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER", "name": "Gender", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Gender", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.GENDER", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER", "data_length": 40, "description": "Gender", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER CONFIDENCE", "name": "Gender Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Gender Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER_CONFIDENCE", "data_length": 10, "description": "Gender Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.FACE COORDS", "name": "Face Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "FACE_COORDS", "data_length": 200, "description": "Face Coordinates like postion, height,width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE GROUP", "name": "Person Age Group", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age Group", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.AGE GROUP", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_GROUP", "data_length": 10, "description": "Person Age Group", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "name": "Safe Content", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 107, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONTENT TYPE", "name": "Safe Content Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Safe Content Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENTS", "data_length": 20, "description": "Safe Content Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONFIDENCE", "name": "Content Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Content Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENT_CONFIDENCE", "data_length": 10, "description": "Safe Content Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "name": "Colors", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 108, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.NAME", "name": "Color", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Color", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "NAME", "data_length": 25, "description": "COLOR", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.PROPORTION", "name": "Color Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Color Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "PROPORTION", "data_length": 10, "description": "Proportion", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.FOREGROUND", "name": "Foreground Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Foreground Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "FOREGROUND", "data_length": 25, "description": "Foreground Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.BACKGROUND", "name": "Background Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Background Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "BACKGROUND", "data_length": 25, "description": "Background Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.ISBW", "name": "Is Black and White", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Is Black and White", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "ISBW", "data_length": 10, "description": "Is Black and White", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "name": "Captions", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 109, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION TEXT", "name": "Caption Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Caption Text", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "TEXT", "data_length": 2000, "description": "Caption Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION CONFIDENCE", "name": "Caption Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Caption Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "CAPTION_CONFIDENCE", "data_length": 10, "description": "Caption Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "name": "Image Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 110, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.IMAGE TYPE", "name": "Analysis Image Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Analysis Image Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_IMAGE_TYPE", "column_name": "TYPE", "data_length": 100, "description": "Image Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "parent_table_name": "Image Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.DATE", "name": "Date: Media Analysis", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-11-13T14:36:42+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date: Media Analysis", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MEDIA_ANALYSIS_DATE", "data_length": 25, "description": "Date Media Analysis was done on the asset.", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR LANGUAGE", "name": "Image Text Language", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Image Text Language", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "LANGUAGE", "data_length": 10, "description": "OCR data language", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR TEXT", "name": "Text on Image", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Text on Image", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "TEXT", "data_length": 4000, "description": "OCR Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "name": "Embedded Brand Info", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 119, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.NAME", "name": "Embedded Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Embedded Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Embedded Brand Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.CONFIDENCE", "name": "Embedded Brand Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Embedded Brand Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Embedded Brand Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.COORDINATES", "name": "Embedded Brand Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Embedded Brand Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "COORDINATES", "data_length": 200, "description": "Embedded Brand Coordinates like position, height, width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "HYBRIS.PRODUCT.INFO", "name": "PIM Item Reference", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200027, "metadata_element_list": [{"id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "name": "Hybris Item Reference", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1206, "metadata_element_list": [{"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ID", "name": "Hybris Item ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ID", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT TAG NAME", "name": "Hybris Assignment Label", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Assignment Label", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_TAG_NAME", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ATTRIBUTE NAME", "name": "Hybris Attribute Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Attribute Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ATTRIBUTE_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT CATALOG NAME", "name": "Hybris Catalog Mnemonic", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Catalog Mnemonic", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_CATALOG_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT PK", "name": "Hybris Item PK", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item PK", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_PK", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.SYSTEM ID", "name": "Hybris System ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris System ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "SYSTEM_ID", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.ASSIGNED", "name": "Assigned", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Assigned", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "ASSIGNED", "column_name": "ASSIGNED", "data_length": 38, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PIM TYPE", "name": "PIM Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "PIM Type", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_PIM_TYPE", "column_name": "PIM_TYPE", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS VIDEO", "name": "Media Analysis Video", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1003, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "name": "Labels", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 113, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.ID", "name": "Label Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "ID", "data_length": 40, "description": "Label Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.NAME", "name": "Label Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "NAME", "data_length": 40, "description": "Label Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.APPEARANCES", "name": "Label Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "APPEARANCES", "data_length": 0, "description": "Label Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "name": "Sentiments", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 114, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.ID", "name": "Sentiment Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "ID", "data_length": 40, "description": "Sentiment Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.NAME", "name": "Sentiment Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "NAME", "data_length": 40, "description": "Sentiment Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.APPEARANCES", "name": "Sentiment Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "APPEARANCES", "data_length": 0, "description": "Sentiment Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.SEEN.DURATION.RATIO", "name": "Sentiment Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Sentiment Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "name": "Keywords", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 115, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.ID", "name": "Keyword Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "ID", "data_length": 40, "description": "Keyword Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.NAME", "name": "Keyword Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "NAME", "data_length": 40, "description": "Keyword Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.APPEARANCES", "name": "Keyword Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Keyword Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "name": "Faces", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 111, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.ID", "name": "Face Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "ID", "data_length": 40, "description": "Face Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.NAME", "name": "Face Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "NAME", "data_length": 40, "description": "Face Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.TITLE", "name": "Face Title", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Title", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "TITLE", "data_length": 249, "description": "Face Title", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.DESCRIPTION", "name": "Face Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Face Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.APPEARANCES", "name": "Face Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "APPEARANCES", "data_length": 0, "description": "Face Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SPEAKER.FACE.ID", "name": "Video Speaker Object Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Speaker Object Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "THUMBNAIL_OBJECT_ID", "data_length": 40, "description": "Video Speaker Object Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.SEEN.DURATION.RATIO", "name": "Face Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "SEEN_DURATION_RATIO", "data_length": 20, "description": "Face Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "name": "Brands", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 112, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.ID", "name": "Video Brand Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "ID", "data_length": 40, "description": "Brand Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.NAME", "name": "Video Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Brand Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.DESCRIPTION", "name": "Video Brand Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Brand Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.WIKIURL", "name": "Video Brand Wiki URL", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Wiki URL", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "WIKIURL", "data_length": 200, "description": "Brand Wiki URL", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.APPEARANCES", "name": "Video Brand Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Brand Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.SEEN.DURATION.RATIO", "name": "Video Brand Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Brand Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "name": "Speeches", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 116, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.ID", "name": "SpeechText Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "SpeechText Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "ID", "data_length": 40, "description": "SpeechText Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXT", "name": "Speech Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Text", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXT", "data_length": 1000, "description": "Speech Text", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXTTYPE", "name": "Speech Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXTTYPE", "data_length": 40, "description": "Speech Type", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.START TIME", "name": "Speech Start Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Start Time", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "START_TIME", "data_length": 40, "description": "Speech Start Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.END TIME", "name": "Speech End Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech End Time", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "END_TIME", "data_length": 40, "description": "Speech End Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "name": "Speakers", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 122, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.ID", "name": "Speaker Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "ID", "data_length": 40, "description": "Speaker Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.NAME", "name": "Speaker Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "NAME", "data_length": 100, "description": "Speaker Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.APPEARANCES", "name": "Speaker Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "APPEARANCES", "data_length": 0, "description": "Speaker Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.FIELDGROUP.LOCALASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200057, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1239, "metadata_element_list": [{"id": "FERRERO.FIELD.COUNTRY", "name": "LOCAL COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "LOCAL COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USER", "name": "USER", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "USER", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_USER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.ASSOCIATION", "name": "TYPE OF ASSOCIATION", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "TYPE OF ASSOCIATION", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_ASSOCIATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.VALUE", "name": "VALUE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "VALUE", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_VALUE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "ARTESIA.CATEGORY.VIDEO ATTRIBUTES", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 0, "metadata_element_list": [{"id": "ARTESIA.FIELD.VIDEO.LOW RES MIME TYPE", "name": "Low Resolution Mimetype", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "audio/mpeg"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Low Resolution Mimetype", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": false, "data_type": "CHAR", "facetable": false, "searchable": false, "table_name": "VIDEO_URLS", "column_name": "LO_RES_MIME_TYPE", "data_length": 80, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.VIDEO.START SMPTE", "name": "Start Time SMPTE", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00:00:00:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Start Time SMPTE", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "VIDEO_ASSETS", "column_name": "START_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.END SMPTE", "name": "End Time SMPTE", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00:00:15:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "End Time SMPTE", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "VIDEO_ASSETS", "column_name": "END_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.DURATION SMPTE", "name": "Duration SMPTE", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00:00:15:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Duration SMPTE", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": false, "data_type": "CHAR", "facetable": false, "searchable": false, "table_name": "VIDEO_ASSETS", "column_name": "DURATION_SMPTE", "data_length": 11, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.VIDEO.VIDEO REFERENCE", "name": "Video Reference", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 36224}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Reference", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": false, "data_type": "NUMBER", "facetable": false, "searchable": false, "table_name": "VIDEO_ASSETS", "column_name": "VIDEO_REFERENCE", "data_length": 0, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false}]}], "has_multilingual_fields": false}, "mime_type": "audio/x-wav", "path_list": [{"parents": [{"id": "22ffc2d88af095463e48ab79e09886102f039563", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "22ffc2d88af095463e48ab79e09886102f039563", "sequence_number": 0}, {"id": "c6e6896565298d09d364f501aecd10d0998d8437", "name": "NUTELLA XMAS - PL ADAPTATION 2", "container_state": "NORMAL", "original_uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "sequence_number": 0}, {"id": "20c88462ba3557e7aae759665cbe331f693d398a", "name": "02. Campaigns", "container_state": "NORMAL", "original_uoi_id": "20c88462ba3557e7aae759665cbe331f693d398a", "sequence_number": 0}, {"id": "1638869b9b347c39842effc7e5ff965de47e8e65", "name": "01.Standard", "container_state": "NORMAL", "original_uoi_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "sequence_number": 0}, {"id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "name": "01.Poland", "container_state": "NORMAL", "original_uoi_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "sequence_number": 0}, {"id": "341bbf240ea033435cc225cd1add5c009bc067d7", "name": "PL", "container_state": "NORMAL", "original_uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "sequence_number": 0}, {"id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "name": "01. PL - Nutella", "container_state": "NORMAL", "original_uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "sequence_number": 0}, {"id": "5353bb35177d792b073acc634e010df2908fde32", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 4, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "sequence_number": 0}, {"id": "847c0ede25c32edd97546221fe54fb392431848d", "name": "NUTELLA XMAS - PL ADAPTATION 3", "container_state": "NORMAL", "original_uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "sequence_number": 0}, {"id": "20c88462ba3557e7aae759665cbe331f693d398a", "name": "02. Campaigns", "container_state": "NORMAL", "original_uoi_id": "20c88462ba3557e7aae759665cbe331f693d398a", "sequence_number": 0}, {"id": "1638869b9b347c39842effc7e5ff965de47e8e65", "name": "01.Standard", "container_state": "NORMAL", "original_uoi_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "sequence_number": 0}, {"id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "name": "01.Poland", "container_state": "NORMAL", "original_uoi_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "sequence_number": 0}, {"id": "341bbf240ea033435cc225cd1add5c009bc067d7", "name": "PL", "container_state": "NORMAL", "original_uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "sequence_number": 0}, {"id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "name": "01. PL - Nutella", "container_state": "NORMAL", "original_uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "sequence_number": 0}, {"id": "5353bb35177d792b073acc634e010df2908fde32", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 4, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "103a6545e38f07f6e989a86c6ee7e10339a71a14", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "103a6545e38f07f6e989a86c6ee7e10339a71a14", "sequence_number": 0}, {"id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "name": "NUTELLA - CHRISTMAS 26 E2E", "container_state": "NORMAL", "original_uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "sequence_number": 0}, {"id": "413c776f4416163b88737d53bb72dfe23bfd2430", "name": "Global", "container_state": "NORMAL", "original_uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 10, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "sequence_number": 0}, {"id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "name": "Oliver Read Only", "container_state": "NORMAL", "original_uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "sequence_number": 0}, {"id": "23b155c32d5c6142914b41458234c100812bbec8", "name": "Oliver", "container_state": "NORMAL", "original_uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "sequence_number": 0}, {"id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "name": "Z - Exchange", "container_state": "NORMAL", "original_uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "sequence_number": 0}], "complete": true, "sequence_number": 4, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "22ffc2d88af095463e48ab79e09886102f039563", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "22ffc2d88af095463e48ab79e09886102f039563", "sequence_number": 0}, {"id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "name": "Oliver Read Only", "container_state": "NORMAL", "original_uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "sequence_number": 0}, {"id": "23b155c32d5c6142914b41458234c100812bbec8", "name": "Oliver", "container_state": "NORMAL", "original_uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "sequence_number": 0}, {"id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "name": "Z - Exchange", "container_state": "NORMAL", "original_uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "sequence_number": 0}], "complete": true, "sequence_number": 4, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}], "creator_id": "1003", "asset_state": "NORMAL", "checked_out": false, "folder_path": "", "content_size": 4320080, "content_type": "AUDIO", "content_state": "NORMAL", "date_imported": "2025-11-13T14:34:31.017+01:00", "import_job_id": 217218, "streaming_url": "https://ppr.dam.ferrero.com/video/data/repository/original/vol0/224/add05e150cfc6e927edfd0494ccea6c578ed3f47_proxy.mp3", "subscribed_to": false, "collection_ids": [], "latest_version": true, "legacy_model_id": 116, "content_editable": true, "content_sub_type": "WHOLE", "import_user_name": "bizAdmin", "date_last_updated": "2025-11-13T14:52:11.743+01:00", "metadata_model_id": "ECOMMERCE", "original_asset_id": "c2909a205fd85472f291f4ec42222c81eeb76e7c", "rendition_content": {"preview_content": {"id": "0197a2211214719c10463508faa6129d2612c620", "url": "/otmmapi/v6/renditions/0197a2211214719c10463508faa6129d2612c620", "name": "250924HR-STEMS-17h36-NutellaWeihnachtenShareTheLove15s-ATMOBUS.mp3", "width": 0, "height": 0, "mime_type": "audio/mpeg", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "PREVIEW", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\224\\\\add05e150cfc6e927edfd0494ccea6c578ed3f47_proxy.mp3", "content_size": 240812, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_content_info": {"master_content": {"id": "41b953fd375e3963b00c25be99c1a9d1770a16c0", "url": "/otmmapi/v6/renditions/41b953fd375e3963b00c25be99c1a9d1770a16c0", "name": "250924HR-STEMS-17h36-NutellaWeihnachtenShareTheLove15s-ATMOBUS.wav", "width": -1, "height": -1, "mime_type": "audio/x-wav", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\224\\\\250924HR-STEMS-17h36-NutellaWeihnachtenShareTheLove15s-ATMOBUS_41b953fd375e3963b00c25be99c1a9d1770a16c0.wav", "content_size": 4320080, "unit_of_size": "BYTES", "content_checksum": "91f9674c00ade7c5ab0056968dcb317c", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "supporting_content": [{"id": "add05e150cfc6e927edfd0494ccea6c578ed3f47", "url": "/otmmapi/v6/renditions/add05e150cfc6e927edfd0494ccea6c578ed3f47", "name": "250924HR-STEMS-17h36-NutellaWeihnachtenShareTheLove15s-ATMOBUS.mp3", "width": 0, "height": 0, "mime_type": "audio/mpeg", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "SUPPORTING", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\224\\\\add05e150cfc6e927edfd0494ccea6c578ed3f47_proxy.mp3", "content_size": 240812, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}]}, "asset_state_user_id": "1003", "master_content_info": {"id": "41b953fd375e3963b00c25be99c1a9d1770a16c0", "url": "/otmmapi/v6/renditions/41b953fd375e3963b00c25be99c1a9d1770a16c0", "name": "250924HR-STEMS-17h36-NutellaWeihnachtenShareTheLove15s-ATMOBUS.wav", "width": -1, "height": -1, "mime_type": "audio/x-wav", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\224\\\\250924HR-STEMS-17h36-NutellaWeihnachtenShareTheLove15s-ATMOBUS_41b953fd375e3963b00c25be99c1a9d1770a16c0.wav", "content_size": 4320080, "unit_of_size": "BYTES", "content_checksum": "91f9674c00ade7c5ab0056968dcb317c", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "delivery_service_url": "https://ppr.dam.ferrero.com/adaptivemedia/rendition?id=c2909a205fd85472f291f4ec42222c81eeb76e7c", "product_associations": false, "security_policy_list": [{"id": 5467, "name": "Marketing Viewer", "status": "NORMAL", "created_by": "1003", "create_date": "2023-10-06T16:52:07.297+02:00", "description": "Marketing Viewer", "ownership_type": "PUBLIC"}], "content_state_user_id": "1003", "content_state_user_name": "OTMM BusinessAdmin", "asset_lock_state_user_id": "1003", "metadata_state_user_name": "OTMM BusinessAdmin", "progressive_download_url": "https://ppr.dam.ferrero.com/video/data/repository/original/vol0/224/add05e150cfc6e927edfd0494ccea6c578ed3f47_proxy.mp3", "access_control_descriptor": {"permissions_map": {"entry": [{"key": "text.securityPolicy.permission.Custom04Permission", "value": true}, {"key": "text.securityPolicy.permission.ContentEditPermission", "value": true}, {"key": "text.securityPolicy.permission.AssetViewPermission", "value": true}, {"key": "text.securityPolicy.permission.ProjectViewPermission", "value": true}, {"key": "text.securityPolicy.permission.MembershipEditPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom03Permission", "value": true}, {"key": "text.securityPolicy.permission.MetaDataEditPermission", "value": true}, {"key": "text.securityPolicy.permission.EditParentsPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom02Permission", "value": true}, {"key": "text.securityPolicy.permission.ExportPermission", "value": true}, {"key": "text.securityPolicy.permission.SummaryViewPermission", "value": true}, {"key": "text.securityPolicy.permission.PreviewViewPermission", "value": true}, {"key": "text.securityPolicy.permission.SubscribePermission", "value": true}, {"key": "text.securityPolicy.permission.DeleteAssetPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom01Permission", "value": true}]}}, "content_lock_state_user_id": "1003", "asset_state_last_update_date": "2025-11-13T14:52:11.743+01:00", "content_lock_state_user_name": "bizAdmin", "metadata_lock_state_user_name": "bizAdmin", "content_state_last_update_date": "2025-11-13T14:34:31.22+01:00", "inherited_metadata_collections": [{"container_id": "22ffc2d88af095463e48ab79e09886102f039563", "container_name": "00. Master Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "22ffc2d88af095463e48ab79e09886102f039563", "originator_id": "22ffc2d88af095463e48ab79e09886102f039563", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00. Master Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "c6e6896565298d09d364f501aecd10d0998d8437", "container_name": "NUTELLA XMAS - PL ADAPTATION 2", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA XMAS - PL ADAPTATION 2"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000598"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA_XMAS_-_PL__JV_LA_MLT_NUT_0000598"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CHRISTMAS"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local adaptation of global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000576"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "EE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "EE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "LT"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "LV"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2024/2025"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "A5"}, "display_value": "Rework needed from Agency", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.DEPARTMENTNAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "20c88462ba3557e7aae759665cbe331f693d398a", "container_name": "02. Campaigns", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "20c88462ba3557e7aae759665cbe331f693d398a", "originator_id": "20c88462ba3557e7aae759665cbe331f693d398a", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "02. Campaigns"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "container_name": "01.Standard", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "originator_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "01.Standard"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "container_name": "01.Poland", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "originator_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "01.Poland"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "container_name": "PL", "container_type_id": "GLOBALMARKETUNIT", "container_type_name": "L6 - MARKET UNIT", "inherited_metadata_values": [{"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "b94dd71b732e3c1df6ae63216c53d4d4b0e7f002"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E39"}, "display_value": "POLAND", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "13063087b81ea172db42e69ed8e8fa013cd5bfe0"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Local PL Editable Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "bf49ba2a40d0d0dccee4d5de7381659b106dd89a"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Nutella Local PL Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "3c0070e420882e3e18f6097811cb60a67239003b"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "7f3c1933b61e900457ea6e2aab750303882873d4"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "b0c960759e48c0fcdcb650417179a614da95e866"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Local PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "6f603fcc63415e266dc35cf2314d31357a2966bf"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "495fa4f08769a021cfa907dfb7a903fade9bd19a"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "e3b647e172a89e1e7cbdd2964faff1bca8dcf520"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "6870cca056b54cd400a9fbd4fe75513e69cedcdd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "container_name": "01. PL - Nutella", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "5efe2981e6f9afca7ed3fc91a171f02162ef23e3"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E008"}, "display_value": "POLAND", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Local PL Editable Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0de507c8b9d1f5942b6376b6c2a2b3ec1097e42e"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E39"}, "display_value": "POLAND", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "ca70a6d55e4277ecbef2a01a593c614501cbcf74"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "3e9d669ab1047383d0416ba40af75744148c94c8"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0e241fc386dcd91baa31a409e297169fe4a352c2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "2e3e0f2be0e487b540d9b63cb8c0e9ed9c6b1bb6"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "359c98154f230a60acc6b4eb048e129411d7a778"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "e92f9f10c0c29dda8261218c2c72a0baa66472f2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "15dff42c3b196ba3ae5b3c2ea33f00e347e6f654"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0ae044cd9dddf86cd9406c9edc3996b18c430be0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "name": "AMMC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AMMC", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LOCAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "7806fed6127b50c21f6b03e1f7b63f3dedc1e8d1"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "4c8a2d6e178638bfacfeaf3f7f6f1000304693a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "name": "Product Asset Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Asset Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCT_ASSET_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "5353bb35177d792b073acc634e010df2908fde32", "container_name": "EU", "container_type_id": "GEOGRAPHYLOCAL", "container_type_name": "L4 - GEOGRAPHY LOCAL", "inherited_metadata_values": [{"id": "FERRERO.MARKET.FOLDER.GLOBAL", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "4c4d4bf36bf8b1ace55f990e78d6332a9cb20990"}, "metadata_element": {"id": "FERRERO.MARKET.FOLDER.GLOBAL", "name": "Global/Local (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "LOCAL"}, "display_value": "Local", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local (Marketing)", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "GLOBALLOCAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_AREA", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "3dc200c993ab8263952dc6da1498026f615f45dd"}, "metadata_element": {"id": "MARKETING_AREA", "name": "AREA", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E010"}, "display_value": "EUROPE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "AREA", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "AREA", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "AREA", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "dc7749c3e113ec9e0b9e9a3840ea55673ca5e49f"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "f2d658a3829c2ea158ae70a4b4e7928bcf88f8e2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "972d0258a82de85672bd84d8af68cdb67ad3d3ca"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "1212505ad3fe4c9d7458568f3d95aeb4c4e5c37e"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "9d1dfdef55ff7a3eb03552988ddf729c7a0f5107"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "54f006eeb366121a29ee98da33d437615dcd34e0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "1fd8802010e30d44cebb2f3eb090b12ac550f97d"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "be0dc9a87262ee7fd165237b531ba3b7aa93a260"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "2f99f0f0f9e43fb34df9222c8b73a86fb78e473e"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "container_name": "Nutella", "container_type_id": "GLOBALBRAND", "container_type_name": "L3 - BRAND", "inherited_metadata_values": [{"id": "FERRERO.TABULAR.NEW.BRAND", "tabular": true, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "9bb1c183135f5240f09132aef59c4ea48c762381"}, "metadata_element": {"id": "FERRERO.TABULAR.NEW.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF30"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND (Marketing)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF30"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "BRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TABULAR_BRAND", "column_name": "BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.NEW.BRAND", "parent_table_name": "BRAND (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "tabular": true, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "a37b13c02cba799378211e17b73234a0d836f9b6"}, "metadata_element": {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "JV"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND(HARMONIZED)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "JV"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.HARMONIZEDBRAND", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_HARMONIZEDBRAND", "column_name": "HARMONIZEDBRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.HARMONIZEDBRAND", "parent_table_name": "BRAND(HARMONIZED)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "AGENCY.COLLABORATION", "tabular": false, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "183d6e0957a9940f9b18ef44f46d957802b63397"}, "metadata_element": {"id": "AGENCY.COLLABORATION", "name": "Agency collaboration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency collaboration", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "AGENCY_COLLABORATION", "column_name": "AGENCY_COLLABORATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "AGENCY.SHARING", "tabular": false, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "d0e2b725ddfdc452cc3ba750bbe8ec059c6b01ba"}, "metadata_element": {"id": "AGENCY.SHARING", "name": "Agency sharing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency sharing", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "AGENCY_SHARING", "column_name": "AGENCY_SHARING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "CONTENT.SCALING.AGENCYNAME", "tabular": false, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "f9dfa695cc5ef8cd3fafada4e44cfdaa1522d58a"}, "metadata_element": {"id": "CONTENT.SCALING.AGENCYNAME", "name": "Content Scaling agency name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Scaling agency name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENTSCALING_AGENCYNAME", "column_name": "CONTENTSCALING_AGENCYNAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "container_name": "01. Nutella Core", "container_type_id": "GLOBALSUBCATEGORY", "container_type_name": "L2 - SUBCATEGORY", "inherited_metadata_values": [{"id": "MARKETING_SUBCATEGORY", "tabular": false, "value_id": {"uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "originator_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "inherited_field_id": "3000ad591e09b5c75f85fc2ccbb9ebeb31b3ab78"}, "metadata_element": {"id": "MARKETING_SUBCATEGORY", "name": "SUBCATEGORY", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Mart-Nutella-Core"}, "display_value": "Nutella Core", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "SUBCATEGORY", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "SUBCATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "SUBCATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "tabular": true, "value_id": {"uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "originator_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "inherited_field_id": "2c751ce760d88c0e271925ea5149348106944bfa"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Subcategory Owner", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_SUBCATEGORY_OWNER_TM", "column_name": "SUBCATEGORY_OWNER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "parent_table_name": "Subcategory Owner", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "container_name": "Nutella", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "originator_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E04"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "originator_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final Approver BPS ", "values": [{"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "container_name": "00. Master Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "originator_id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00. Master Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "847c0ede25c32edd97546221fe54fb392431848d", "container_name": "NUTELLA XMAS - PL ADAPTATION 3", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA XMAS - PL ADAPTATION 3"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000599"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA_XMAS_-_PL_A_JV_LA_PL_NUT_0000599"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CHRISTMAS"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local adaptation of global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000576"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2021/2022"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "A1"}, "display_value": "Local Campaign ready for localization", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.DEPARTMENTNAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "103a6545e38f07f6e989a86c6ee7e10339a71a14", "container_name": "05. Final Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "103a6545e38f07f6e989a86c6ee7e10339a71a14", "originator_id": "103a6545e38f07f6e989a86c6ee7e10339a71a14", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "05. Final Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "container_name": "NUTELLA - CHRISTMAS 26 E2E", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA - CHRISTMAS 26 E2E"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000576"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA_-_CHRISTMA_JV_GL_MLT_NUT_0000576"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "BE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "BE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "BG"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "EE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "LT"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "LU"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "LV"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "MD"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "NL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "RO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2025/2026"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "B2"}, "display_value": "Master campaign received from Agency", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.DEPARTMENTNAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "container_name": "Global", "container_type_id": "GEOGRAPHYGLOBAL", "container_type_name": "L4 - GEOGRAPHY GLOBAL", "inherited_metadata_values": [{"id": "FERRERO.MARKET.FOLDER.GLOBAL", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "963db123044a8d3ff5d8f4aac56d35df77a7656c"}, "metadata_element": {"id": "FERRERO.MARKET.FOLDER.GLOBAL", "name": "Global/Local (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "GLOBAL"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local (Marketing)", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "GLOBALLOCAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_AREA", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "3a37ace6a53a93799e0e18773ba6c7e70305cc78"}, "metadata_element": {"id": "MARKETING_AREA", "name": "AREA", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AREA", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "AREA", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "AREA", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "9f64f884b41d2a8445f4d9cd60714e91024e8b13"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Global Editable Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "8847a6dfbebcf323a8170649b390af1a375c08b8"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Nutella Global Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "758e614412f11ecb58446966d328974daf253446"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "53df9e81ae46cf6bd2440643426224b1fb904aeb"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "name": "Published Security Policy - Restricted Visibility", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Global Published Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Security Policy - Restricted Visibility", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_VISIBILITY_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "6b410cc3e966037a3e534da53137d32856cd6bdb"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "b5f185da6208925fe296e074dbdfdd74678ad076"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "b9e4bba5fa277862093047710c3fccb44a553f91"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "a70b94dccf12d05fbcf6a1881e4726759d8714a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "134e6810dec03aed0a70f68bf16cdd3a390f99de"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "2c412cc87805c4f03622e671cd7cdd65402b5598"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "0f4d4a35b08b4d2aac7ce7cc18999a8e5f523edf"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.GLOBAL APPROVER", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "43af18c983afd26a477317ac0b608495d9e0b3df"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.GLOBAL APPROVER", "name": "Global approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "GLOBAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "00dacbe20687d3c5d0be9b4fc2997c572e3c36bf"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "0fbcf70c95f5d28645e7a6187f7c429d62e60380"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Global comm"}, "display_value": "Global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Global comm"}, "display_value": "Global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "container_name": "Oliver Read Only", "container_type_id": "L3 - Agency Structure", "container_type_name": "L3 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "55530f721f18c847e35d7c828edf53461b5014b0"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "330bb6f68316aab5c45f9fe34e047cce573c67cc"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "name": "Agency Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "AGENCY_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "e30e90d694f9935d4c15c4c78891beed8853a272"}, "metadata_element": {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "name": "Published Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "PUBLISHED_ASSET_SP_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "23b155c32d5c6142914b41458234c100812bbec8", "container_name": "Oliver", "container_type_id": "L2 - Agency Structure", "container_type_name": "L2 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.AGENCY", "tabular": false, "value_id": {"uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "originator_id": "23b155c32d5c6142914b41458234c100812bbec8", "inherited_field_id": "48fcbc397986aca5bb8722a95197dd0a46f19b4e"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_AGENCY", "column_name": "AGENCY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "container_name": "Z - Exchange", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "YY"}, "display_value": "AGENCIES", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Final Approver BPS ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}], "asset_lock_state_last_update_date": "2025-11-13T14:52:11.967+01:00", "content_lock_state_last_update_date": "2025-11-13T14:34:31.243+01:00"} \N \N active f \N \N 2025-11-21 03:20:27.67401 2025-11-21 03:20:27.67401 2025-11-21 03:20:27.67401 5 QIxiXZ a6d042144bd706efc71c3e57c061b39775dcb74c 311NUTELLAXMASShareTheLoveGlas15sTVC16b9v01328ENMASTER .mp4 \N video/mp4 \N \N \N \N \N \N \N \N \N \N \N \N \N C000000576 847c0ede25c32edd97546221fe54fb392431848d C000000599 95c935af7e32719e82ee47bcae9cf772c01b51fa Box File ID: 2052715628784\nBox URL: https://app.box.com/file/2052715628784\nDAM Asset ID: a6d042144bd706efc71c3e57c061b39775dcb74c {"name": "311NUTELLAXMASShareTheLoveGlas15sTVC16b9v01328ENMASTER.mp4", "links": {"links": [], "source_id": "a6d042144bd706efc71c3e57c061b39775dcb74c"}, "locked": false, "deleted": false, "expired": false, "version": 1, "asset_id": "a6d042144bd706efc71c3e57c061b39775dcb74c", "metadata": {"id": "ECOMMERCE", "name": "Marketing Asset", "type": "com.artesia.metadata.MetadataModel", "legacy_id": 116, "metadata_element_list": [{"id": "FERRERO.CATEGORY.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200054, "metadata_element_list": [{"id": "FERRERO.FIELD.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Status", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.CONTENT_STATUS", "edit_type": "COMBO_NOTNULL", "facetable": false, "searchable": true, "table_name": "FERRERO_CONTENT_STATUS_MD", "column_name": "CONTENT_STATUS", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9215, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRER.CATEGORY.ASSET_INFO", "name": "Asset Info", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200022, "metadata_element_list": [{"id": "FERRERO.FIELD.MKTG.ASSET TYPE", "name": "Asset Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "tvc"}, "display_value": "TVC", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.ASSETTYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.FISCAL YEAR", "name": "Release Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2025/2026"}, "display_value": "2025/2026", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Release Fiscal Year", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_DOMAIN_FISCAL_YEAR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "FISCAL__YEAR", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "name": "Main Languages", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1210, "metadata_element_list": [{"id": "MAIN_LANGUAGES", "name": "MAIN LANGUAGES", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "MAIN LANGUAGES", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MAIN LAGUAGES_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MAIN_LANGUAGE_TABLE", "column_name": "MAIN_LANGUAGE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "parent_table_name": "Main Languages", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.ASSET DESCRIPTION", "name": "Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Description", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "DESCR", "data_length": 249, "description": "Descriptive information", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.FLAVOUR", "name": "Flavour", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Flavour", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.FLAVOUR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FLAVOUR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.SIZE", "name": "Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Size", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.SIZE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SIZE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1241, "metadata_element_list": [{"id": "FERRERO.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Compliance", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ASSETCOMPLIANCE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_COMPLIANCE", "column_name": "ASSET_COMPLIANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "parent_table_name": "Asset Compliance", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.TAG DETAILS", "name": "Tag Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 118, "metadata_element_list": [{"id": "ARTESIA.FIELD.TAG", "name": "Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Tag", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.TAGS", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "OTMM_TAGS", "column_name": "TAG", "data_length": 80, "description": "Tag", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG CONFIDENCE", "name": "Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Confidence", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG TYPE", "name": "Tag Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Tag Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "TAG_TYPE", "data_length": 10, "description": "Tag Type", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED BY", "name": "Associated By", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Associated By", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_BY", "data_length": 10, "description": "Associated By", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED DATE", "name": "Associated Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Associated Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_DATE", "data_length": 10, "description": "Associated Date", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.STATE", "name": "Global/Local", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "GLOBAL"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO_NOTNULL", "facetable": true, "searchable": true, "table_name": "FERRERO_IC_ASSET_DETAILS", "column_name": "ASSET_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.ASPECT RATIO", "name": "Aspect Ratio (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio (Marketing)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASPECT_RATIO", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASPECT_RATIO", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "name": "Tag (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1222, "metadata_element_list": [{"id": "MARKETING_TAG", "name": "Marketing Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Marketing Tag", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.DOMAIN.TAG", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TAG_MARKET", "column_name": "TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "parent_table_name": "Tag (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.TAGS", "name": "Auto-Generated Tags", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Auto-Generated Tags", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "AUTO_GENERATED_TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CERTIFIER", "name": "Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approver", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.MARKETING.FIELD.APPROVAL DATE", "name": "Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.LEGAL APPROVAL DATE", "name": "Legal Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CERTIFIER", "name": "IA&CC Certifier", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Certifier", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CC APPROVAL DATE", "name": "IA&CC Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "name": "Extended Approval", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1230, "metadata_element_list": [{"id": "FERRERO.FIELD.EXTENDED.APPROVAL", "name": "Extended Approval required by:", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended Approval required by:", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COMMENTS", "name": "Comment", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comment", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "COMMENTS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.DATE", "name": "Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USERS", "name": "User ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "User ID", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "USERS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXTENDED.JOBID", "name": "Extended JobID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended JobID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.MIGRATION.INDEX", "name": "Migration Index", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Migration Index", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MIGRATION.INDEX", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MIGRATION_INDEX", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "FERRERO_MARKET_MARKETING_CREATOR", "name": "Marketing Creator", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Marketing Creator", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.CREATOR", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MARKETING_CREATOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "ARTESIA.FIELD.IS LATEST VERSION", "name": "Is Latest Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Y"}, "display_value": "Yes", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Is Latest Version", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.YES_NO", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "IS_LATEST_VERSION", "data_length": 1, "description": "Is this the latest version? (Y/N)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET VERSION", "name": "Asset Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 1}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Version", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "INTEGER", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "VERSION", "data_length": 12, "description": "Version number of asset", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET_ID", "name": "Asset ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "a6d042144bd706efc71c3e57c061b39775dcb74c"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset ID", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "LOGICAL_UOI_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.ECOMMERCE STATUS", "name": "Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "PUBLISHED"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Status", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "ASSET_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CREATOR", "name": "Uploaded by", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Uploaded by", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_USER_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.FIELD.CREATION DATE", "name": "Upload Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-11-11T17:12:23.087+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Upload Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_DT", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.ASSET NAME", "name": "Asset Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "311NUTELLAXMASShareTheLoveGlas15sTVC16b9v01328ENMASTER.mp4"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Name", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "description": "Original name of master object", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.CONTENT TYPE", "name": "Content Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "VIDEO"}, "display_value": "Video", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Type", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.CONTENT_TYPES", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "CONTENT_TYPE", "data_length": 8, "description": "Content Type", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.MIME TYPE", "name": "File Extension", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "video/mp4"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Extension", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_MIME_TYPE", "data_length": 80, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.FILE.SIZE", "name": "File Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "long", "value": 39659656}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Size", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "LONG", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_SIZE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP RESOLUTION", "name": "Bitmap Resolution", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Resolution", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_RESOLUTION", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP WIDTH", "name": "Bitmap Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Width", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_WIDTH", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP HEIGHT", "name": "Bitmap Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Height", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_HEIGHT", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.VIDEO.BIT_RATE", "name": "Bitrate", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 21151817}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitrate", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "BIT_RATE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.EMBEDDED.FIELD.DURATION", "name": "Duration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00:00:15:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Duration", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "DURATION_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.ASPECT RATIO", "name": "Aspect Ratio", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "1.778"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "ASPECT_RATIO", "data_length": 30, "displayable": false, "instructions": "ASPECT_RATIO", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME HEIGHT", "name": "Frame Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 1080}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Height", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_HEIGHT", "data_length": 12, "displayable": true, "instructions": "FRAME_HEIGHT", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME WIDTH", "name": "Frame Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 1920}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Width", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_WIDTH", "data_length": 12, "displayable": true, "instructions": "FRAME_WIDTH", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.ASPECT.RATIO.POC", "name": "Aspect Ratio(POC)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "16:9"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio(POC)", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASPECT_RATIO_TABLE", "column_name": "ASPECT_RATIO", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "PRODUCT.DETAILS", "name": "Product Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200029, "metadata_element_list": [{"id": "FERRERO.TABLE.EANCODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1208, "metadata_element_list": [{"id": "EAN_CODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "EAN CODE/ 77 CODE", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "EAN.CODE", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "EAN_CODE", "column_name": "EAN_CODE_DESCRIPTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "COUNTRY", "name": "COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "EAN_CODE", "column_name": "COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKETING.ADVANCE.PRODUCT.LINK", "name": "Asset-to-product relation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset-to-product relation", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_MARKETING_ADVANCE_PRODUCT_LINK", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ADVANCE_PRODUCT_LINK", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 10182, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.SUB BRAND", "name": "Sub-Brands", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Sub-Brands", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.SUBBRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "SUB_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT WEIGHT", "name": "Product Weight", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Weight", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_WEIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.CONSUMER UNIT PACKAGING", "name": "Consumer Unit Packaging", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Consumer Unit Packaging", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PACK", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "CONSUMER_UNIT_PACKAGING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.4 DIGIT CODE", "name": "4 Digit Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "4 Digit Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "DIGITCODE", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERREO.ECOM.RETAILER_SPECIFIC_FIELD", "name": "Retailer Specific", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Retailer Specific", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "RETAILER_SPECIFIC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "cascading_group_id": "FERRERO.RETAILER.SPECIFIC", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY START PERIOD", "name": "Asset validity start period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity start period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_STARTING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY END PERIOD", "name": "Asset validity end period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity end period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_ENDING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.ASSET.NAMING.CONVENTION", "name": "Does asset need GS1 naming convention", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Does asset need GS1 naming convention", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASSETNAMINGCONVENTION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_NAMING_CONVENTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9515, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT VIEW", "name": "Product View", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product View", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT VIEW", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_VIEW", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT ANGLE", "name": "Product Angle", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Angle", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT.ANGLE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_ANGLE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT STATE", "name": "Product State", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product State", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT STATE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PROMOTION ID", "name": "Promo ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Promo ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROMO_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.BUSINESS.ASSET TYPE", "name": "Asset Type (eDAM)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Type (eDAM)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "OTMM.DOMAIN.OTMM_ASSETTYPE_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_BUSINESS_INFO", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7244, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200048, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.AGENCY NAME", "name": "Agency Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Agency Name", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.AGENCY_NAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AGENCY_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7336, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.CREATIX", "name": "CreativeX", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200059, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.CREATIVEX", "name": "Confidence", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1245, "metadata_element_list": [{"id": "FERRERO.TAB.FIELD.CREATIVEX", "name": "Platform > Rating (%)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Platform > Rating (%)", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_CREATIVEX", "column_name": "CREATIVEX_NEW", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CREATIVEX", "parent_table_name": "Confidence", "cascading_group_id": "FERRERO.CREATIVEX.CHAR", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.CREATIVEX LINK", "name": "CreativeX Hyperlink", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "CreativeX Hyperlink", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_CREATIVEX", "column_name": "CREATIVE_LINK", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.IP_RIGHTS", "name": "IP Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200046, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.IPRIGHT", "name": "IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "IP Rights", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.IPRIGHTS", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IP_RIGHTS", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.BUYOUT", "name": "Touchpoint Scope", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Touchpoint Scope", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.TOTAL_BUYOUT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TOTAL_BUYOUT", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.FERRERO PROPERTY", "name": "Ferrero Property", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Ferrero Property", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.FERRERO_PROPERTY", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FERRERO_PROPERTY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200035, "metadata_element_list": [{"id": "FERRERO.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1209, "metadata_element_list": [{"id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "name": "IP Coverage, Area, Region & Market Unit", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Coverage, Area, Region & Market Unit", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "IPCOVERAGE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "cascading_group_id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHT TYPE", "name": "Copyright Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHT_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.MEDIATYPE", "name": "Media Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Media Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MEDIA_TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "MEDIA_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE FROM", "name": "Expiration of Usage - From", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - From", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_FROM", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE TO", "name": "Expiration of Usage - To", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - To", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_TO", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO._DURATION", "name": "IP Duration", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Duration", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "ECOM_DURATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHTTYPE DETAILS", "name": "Copyright Type Details", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type Details", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHTTYPE_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 6, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.MARKET.VID_STAT_RIGHT", "name": "Video & Static Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200047, "metadata_element_list": [{"id": "FERRERO.MARKET.VID_N_STAT", "name": "Video and Static Right", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Video and Static Right", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VID_AND_STAT_RIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.VID_STAT_TYPE", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1221, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.TYPE_VID", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Video & Static Right", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TYPE_VID_STAT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_MARKET_TYPE_VID_STAT", "column_name": "TYPE_OF_VIDEO_STATIC_RIGHT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.VID_STAT_TYPE", "parent_table_name": "Type of Video & Static Right", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKET.PROD_COMPANY", "name": "Production House", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Production House", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.PRODUCT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200050, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.LICENSIN", "name": "Licensing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Licensing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSING", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "cascading_group_id": "FERRERO.MARKET.CG.LICENSE", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.SPOT_DETAILS", "name": "Spot Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200049, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.SPOT_VERSION", "name": "Spot Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Version", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_VERSION", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_VERSION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.SPOT_TYPE", "name": "Spot Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_TYPE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.DIRECTOR_NAME", "name": "Director Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Director Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "DIRECTOR_NAME", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VIDEO_POST_PROD_COMPANY", "name": "Video Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VID_POST_PROD_CONTACT", "name": "Video Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_COMPANY", "name": "Audio Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_CONTACT", "name": "Audio Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.BROADCASTER.CODE", "name": "Broadcaster Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Broadcaster Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BROADCASTER_CODE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.TECHNICAL_VALIDATION", "name": "Technical Validation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Technical Validation", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TECHNICAL_VALIDATION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS", "name": "Media Analysis", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1002, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "name": "Categories", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 105, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY NAME", "name": "Category Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Category Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "NAME", "data_length": 100, "description": "Category Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY CONFIDENCE", "name": "Category Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Category Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "CONFIDENCE", "data_length": 10, "description": "Category Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES COUNT", "name": "Faces Count", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Faces Count", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACECOUNT", "column_name": "COUNT", "data_length": 10, "description": "Faces Count", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "name": "Face Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 106, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME", "name": "Recognized Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME", "data_length": 2000, "description": "Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME CONFIDENCE", "name": "Recognized Name Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME_CONFIDENCE", "data_length": 10, "description": "Name Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE", "name": "Person Age", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE", "data_length": 10, "description": "Person Age", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE CONFIDENCE", "name": "Person Age Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Person Age Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_CONFIDENCE", "data_length": 10, "description": "Person Age Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER", "name": "Gender", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Gender", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.GENDER", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER", "data_length": 40, "description": "Gender", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER CONFIDENCE", "name": "Gender Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Gender Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER_CONFIDENCE", "data_length": 10, "description": "Gender Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.FACE COORDS", "name": "Face Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "FACE_COORDS", "data_length": 200, "description": "Face Coordinates like postion, height,width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE GROUP", "name": "Person Age Group", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age Group", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.AGE GROUP", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_GROUP", "data_length": 10, "description": "Person Age Group", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "name": "Safe Content", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 107, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONTENT TYPE", "name": "Safe Content Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Safe Content Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENTS", "data_length": 20, "description": "Safe Content Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONFIDENCE", "name": "Content Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Content Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENT_CONFIDENCE", "data_length": 10, "description": "Safe Content Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "name": "Colors", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 108, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.NAME", "name": "Color", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Color", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "NAME", "data_length": 25, "description": "COLOR", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.PROPORTION", "name": "Color Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Color Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "PROPORTION", "data_length": 10, "description": "Proportion", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.FOREGROUND", "name": "Foreground Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Foreground Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "FOREGROUND", "data_length": 25, "description": "Foreground Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.BACKGROUND", "name": "Background Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Background Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "BACKGROUND", "data_length": 25, "description": "Background Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.ISBW", "name": "Is Black and White", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Is Black and White", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "ISBW", "data_length": 10, "description": "Is Black and White", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "name": "Captions", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 109, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION TEXT", "name": "Caption Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Caption Text", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "TEXT", "data_length": 2000, "description": "Caption Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION CONFIDENCE", "name": "Caption Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Caption Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "CAPTION_CONFIDENCE", "data_length": 10, "description": "Caption Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "name": "Image Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 110, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.IMAGE TYPE", "name": "Analysis Image Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Analysis Image Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_IMAGE_TYPE", "column_name": "TYPE", "data_length": 100, "description": "Image Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "parent_table_name": "Image Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.DATE", "name": "Date: Media Analysis", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-11-11T17:18:08+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date: Media Analysis", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MEDIA_ANALYSIS_DATE", "data_length": 25, "description": "Date Media Analysis was done on the asset.", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR LANGUAGE", "name": "Image Text Language", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Image Text Language", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "LANGUAGE", "data_length": 10, "description": "OCR data language", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR TEXT", "name": "Text on Image", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Text on Image", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "TEXT", "data_length": 4000, "description": "OCR Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "name": "Embedded Brand Info", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 119, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.NAME", "name": "Embedded Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Embedded Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Embedded Brand Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.CONFIDENCE", "name": "Embedded Brand Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Embedded Brand Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Embedded Brand Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.COORDINATES", "name": "Embedded Brand Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Embedded Brand Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "COORDINATES", "data_length": 200, "description": "Embedded Brand Coordinates like position, height, width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "HYBRIS.PRODUCT.INFO", "name": "PIM Item Reference", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200027, "metadata_element_list": [{"id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "name": "Hybris Item Reference", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1206, "metadata_element_list": [{"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ID", "name": "Hybris Item ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ID", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT TAG NAME", "name": "Hybris Assignment Label", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Assignment Label", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_TAG_NAME", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ATTRIBUTE NAME", "name": "Hybris Attribute Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Attribute Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ATTRIBUTE_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT CATALOG NAME", "name": "Hybris Catalog Mnemonic", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Catalog Mnemonic", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_CATALOG_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT PK", "name": "Hybris Item PK", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item PK", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_PK", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.SYSTEM ID", "name": "Hybris System ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris System ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "SYSTEM_ID", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.ASSIGNED", "name": "Assigned", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Assigned", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "ASSIGNED", "column_name": "ASSIGNED", "data_length": 38, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PIM TYPE", "name": "PIM Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "PIM Type", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_PIM_TYPE", "column_name": "PIM_TYPE", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS VIDEO", "name": "Media Analysis Video", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1003, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "name": "Labels", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 113, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.ID", "name": "Label Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Label Id", "values": [{"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 1}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 2}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 3}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 4}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 5}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 6}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 7}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 8}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 9}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 10}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 11}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 12}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 13}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 14}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 15}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "ID", "data_length": 40, "description": "Label Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.NAME", "name": "Label Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "person"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Label Name", "values": [{"value": {"type": "string", "value": "person"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "clothing"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "human face"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "christmas tree"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "christmas"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "indoor"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "wall"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "tree"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "handwriting"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "text"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "smile"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "food"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "snack"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "dessert"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "tableware"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "baked goods"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "NAME", "data_length": 40, "description": "Label Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.APPEARANCES", "name": "Label Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:02\\",\\"endTime\\":\\"0:00:12.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Label Appearances", "values": [{"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:02\\",\\"endTime\\":\\"0:00:12.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:03\\",\\"endTime\\":\\"0:00:12.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:02\\",\\"endTime\\":\\"0:00:10.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:02\\",\\"endTime\\":\\"0:00:03.04\\"},{\\"startTime\\":\\"0:00:07\\",\\"endTime\\":\\"0:00:12.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:02\\",\\"endTime\\":\\"0:00:02.04\\"},{\\"startTime\\":\\"0:00:07\\",\\"endTime\\":\\"0:00:12.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:02\\",\\"endTime\\":\\"0:00:06.04\\"},{\\"startTime\\":\\"0:00:12\\",\\"endTime\\":\\"0:00:12.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:03\\",\\"endTime\\":\\"0:00:05.04\\"},{\\"startTime\\":\\"0:00:12\\",\\"endTime\\":\\"0:00:12.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:08\\",\\"endTime\\":\\"0:00:10.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:00\\",\\"endTime\\":\\"0:00:01.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:00\\",\\"endTime\\":\\"0:00:00.04\\"},{\\"startTime\\":\\"0:00:14\\",\\"endTime\\":\\"0:00:14.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:10\\",\\"endTime\\":\\"0:00:10.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:11\\",\\"endTime\\":\\"0:00:11.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:11\\",\\"endTime\\":\\"0:00:11.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:11\\",\\"endTime\\":\\"0:00:11.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:11\\",\\"endTime\\":\\"0:00:11.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:11\\",\\"endTime\\":\\"0:00:11.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "APPEARANCES", "data_length": 0, "description": "Label Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "name": "Sentiments", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 114, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.ID", "name": "Sentiment Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "ID", "data_length": 40, "description": "Sentiment Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.NAME", "name": "Sentiment Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "NAME", "data_length": 40, "description": "Sentiment Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.APPEARANCES", "name": "Sentiment Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "APPEARANCES", "data_length": 0, "description": "Sentiment Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.SEEN.DURATION.RATIO", "name": "Sentiment Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Sentiment Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "name": "Keywords", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 115, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.ID", "name": "Keyword Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "ID", "data_length": 40, "description": "Keyword Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.NAME", "name": "Keyword Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "NAME", "data_length": 40, "description": "Keyword Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.APPEARANCES", "name": "Keyword Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Keyword Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "name": "Faces", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 111, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.ID", "name": "Face Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Face Id", "values": [{"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 1}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 2}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 3}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 4}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 5}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 6}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "ID", "data_length": 40, "description": "Face Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.NAME", "name": "Face Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Unknown #2"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Face Name", "values": [{"value": {"type": "string", "value": "Unknown #2"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "Unknown #1"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "Unknown #3"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "Unknown #4"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "Unknown #5"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "Unknown #6"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "Unknown #7"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "NAME", "data_length": 40, "description": "Face Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.TITLE", "name": "Face Title", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Face Title", "values": [{"is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "TITLE", "data_length": 249, "description": "Face Title", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.DESCRIPTION", "name": "Face Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Face Description", "values": [{"is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Face Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.APPEARANCES", "name": "Face Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:01.76\\",\\"endTime\\":\\"0:00:12.76\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Face Appearances", "values": [{"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:01.76\\",\\"endTime\\":\\"0:00:12.76\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:00\\",\\"endTime\\":\\"0:00:06\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:05.04\\",\\"endTime\\":\\"0:00:10.44\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:11.6\\",\\"endTime\\":\\"0:00:12.76\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:11.6\\",\\"endTime\\":\\"0:00:12.76\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:04.16\\",\\"endTime\\":\\"0:00:05.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:06.96\\",\\"endTime\\":\\"0:00:07.6\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "APPEARANCES", "data_length": 0, "description": "Face Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SPEAKER.FACE.ID", "name": "Video Speaker Object Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "72df9d0acd51a93ab4d16acc78b832084152ecdc"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Speaker Object Id", "values": [{"value": {"type": "string", "value": "72df9d0acd51a93ab4d16acc78b832084152ecdc"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "2b183dff0af2adc3bbdb1a3fa1e83362dc7b5d31"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "498fab2d60d2d8ad6767bb52b04fac8a2257c948"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "7f7e128ed3137d67e150ab77df6f1c9ac174d1f8"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "c78d30f8123e4f0db71ff609ebb7c263420a90d0"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "d8a3ff4e00b17c8b62d6fc1edd57dd34ae907029"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "2375333f3f58da6f00363b6f6f08643be55f9715"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "THUMBNAIL_OBJECT_ID", "data_length": 40, "description": "Video Speaker Object Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.SEEN.DURATION.RATIO", "name": "Face Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "0.7324"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Face Seen Duration Ratio", "values": [{"value": {"type": "string", "value": "0.7324"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0.3995"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0.3595"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0.0799"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0.0799"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0.0533"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0.0399"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "SEEN_DURATION_RATIO", "data_length": 20, "description": "Face Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "name": "Brands", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 112, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.ID", "name": "Video Brand Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Brand Id", "values": [{"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "ID", "data_length": 40, "description": "Brand Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.NAME", "name": "Video Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Brand Name", "values": [{"value": {"type": "string", "value": "Nutella"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Brand Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.DESCRIPTION", "name": "Video Brand Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella is the brand name of a sweetened hazelnut cocoa spread. Manufactured by the Italian company Ferrero, it was introduced to the market in 1964. Pietro Ferrero, who owned a bakery in Alba, Piedmont, an area known for the production of hazelnuts, sold an initial batch of 300 kilograms (660 lb) of \\"Pasta Gianduja\\" in 1946."}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Brand Description", "values": [{"value": {"type": "string", "value": "Nutella is the brand name of a sweetened hazelnut cocoa spread. Manufactured by the Italian company Ferrero, it was introduced to the market in 1964. Pietro Ferrero, who owned a bakery in Alba, Piedmont, an area known for the production of hazelnuts, sold an initial batch of 300 kilograms (660 lb) of \\"Pasta Gianduja\\" in 1946."}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Brand Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.WIKIURL", "name": "Video Brand Wiki URL", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "http://en.wikipedia.org/wiki/Nutella"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Brand Wiki URL", "values": [{"value": {"type": "string", "value": "http://en.wikipedia.org/wiki/Nutella"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "WIKIURL", "data_length": 200, "description": "Brand Wiki URL", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.APPEARANCES", "name": "Video Brand Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:11\\",\\"endTime\\":\\"0:00:14.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Brand Appearances", "values": [{"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:11\\",\\"endTime\\":\\"0:00:14.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Brand Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.SEEN.DURATION.RATIO", "name": "Video Brand Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "0.2"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Brand Seen Duration Ratio", "values": [{"value": {"type": "string", "value": "0.2"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Brand Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "name": "Speeches", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 116, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.ID", "name": "SpeechText Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "SpeechText Id", "values": [{"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 1}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 2}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 3}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 4}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "ID", "data_length": 40, "description": "SpeechText Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXT", "name": "Speech Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "FOR SANTA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Speech Text", "values": [{"value": {"type": "string", "value": "FOR SANTA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "FOR MY LiTTLE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "ELVES!"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "nutella"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "share the love this christmas with nutella"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXT", "data_length": 1000, "description": "Speech Text", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXTTYPE", "name": "Speech Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "OCR"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Speech Type", "values": [{"value": {"type": "string", "value": "OCR"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "OCR"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "OCR"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "OCR"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "OCR"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXTTYPE", "data_length": 40, "description": "Speech Type", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.START TIME", "name": "Speech Start Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "0:00:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Speech Start Time", "values": [{"value": {"type": "string", "value": "0:00:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:11"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:11"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:11"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:13"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "START_TIME", "data_length": 40, "description": "Speech Start Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.END TIME", "name": "Speech End Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "0:00:01.04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Speech End Time", "values": [{"value": {"type": "string", "value": "0:00:01.04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:11.04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:11.04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:11.04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:14.04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "END_TIME", "data_length": 40, "description": "Speech End Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "name": "Speakers", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 122, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.ID", "name": "Speaker Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "ID", "data_length": 40, "description": "Speaker Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.NAME", "name": "Speaker Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "NAME", "data_length": 100, "description": "Speaker Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.APPEARANCES", "name": "Speaker Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "APPEARANCES", "data_length": 0, "description": "Speaker Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.FIELDGROUP.LOCALASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200057, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1239, "metadata_element_list": [{"id": "FERRERO.FIELD.COUNTRY", "name": "LOCAL COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "LOCAL COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USER", "name": "USER", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "USER", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_USER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.ASSOCIATION", "name": "TYPE OF ASSOCIATION", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "TYPE OF ASSOCIATION", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_ASSOCIATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.VALUE", "name": "VALUE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "VALUE", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_VALUE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}], "has_multilingual_fields": false}, "mime_type": "video/mp4", "path_list": [{"parents": [{"id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "sequence_number": 0}, {"id": "847c0ede25c32edd97546221fe54fb392431848d", "name": "NUTELLA XMAS - PL ADAPTATION 3", "container_state": "NORMAL", "original_uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "sequence_number": 0}, {"id": "20c88462ba3557e7aae759665cbe331f693d398a", "name": "02. Campaigns", "container_state": "NORMAL", "original_uoi_id": "20c88462ba3557e7aae759665cbe331f693d398a", "sequence_number": 0}, {"id": "1638869b9b347c39842effc7e5ff965de47e8e65", "name": "01.Standard", "container_state": "NORMAL", "original_uoi_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "sequence_number": 0}, {"id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "name": "01.Poland", "container_state": "NORMAL", "original_uoi_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "sequence_number": 0}, {"id": "341bbf240ea033435cc225cd1add5c009bc067d7", "name": "PL", "container_state": "NORMAL", "original_uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "sequence_number": 0}, {"id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "name": "01. PL - Nutella", "container_state": "NORMAL", "original_uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "sequence_number": 0}, {"id": "5353bb35177d792b073acc634e010df2908fde32", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 3, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "103a6545e38f07f6e989a86c6ee7e10339a71a14", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "103a6545e38f07f6e989a86c6ee7e10339a71a14", "sequence_number": 0}, {"id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "name": "NUTELLA - CHRISTMAS 26 E2E", "container_state": "NORMAL", "original_uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "sequence_number": 0}, {"id": "413c776f4416163b88737d53bb72dfe23bfd2430", "name": "Global", "container_state": "NORMAL", "original_uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 4, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "sequence_number": 0}, {"id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "name": "Oliver Read Only", "container_state": "NORMAL", "original_uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "sequence_number": 0}, {"id": "23b155c32d5c6142914b41458234c100812bbec8", "name": "Oliver", "container_state": "NORMAL", "original_uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "sequence_number": 0}, {"id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "name": "Z - Exchange", "container_state": "NORMAL", "original_uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "sequence_number": 0}], "complete": true, "sequence_number": 3, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}], "creator_id": "1003", "asset_state": "NORMAL", "checked_out": false, "folder_path": "", "content_size": 39659656, "content_type": "VIDEO", "content_state": "NORMAL", "date_imported": "2025-11-11T17:12:23.087+01:00", "import_job_id": 216821, "streaming_url": "https://ppr.dam.ferrero.com/video/data/repository/original/vol0/224/9e8d3c3cb542301100e0a21afeede678d6f448f6_proxy.mp4", "subscribed_to": false, "collection_ids": [], "latest_version": true, "legacy_model_id": 116, "content_editable": true, "content_sub_type": "WHOLE", "import_user_name": "bizAdmin", "date_last_updated": "2025-11-11T17:19:05.06+01:00", "metadata_model_id": "ECOMMERCE", "original_asset_id": "a6d042144bd706efc71c3e57c061b39775dcb74c", "rendition_content": {"preview_content": {"id": "86376b2026741a7e60b3448432d1774600c6c572", "url": "/otmmapi/v6/renditions/86376b2026741a7e60b3448432d1774600c6c572", "name": "311NUTELLAXMASShareTheLoveGlas15sTVC16b9v01328ENMASTER.mp4", "width": 640, "height": 360, "mime_type": "video/mp4", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "PREVIEW", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\224\\\\9e8d3c3cb542301100e0a21afeede678d6f448f6_proxy.mp4", "content_size": 1721977, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "thumbnail_content": {"id": "0a3f9cceca9fc99ff0aae97024e812ee05a40e29", "url": "/otmmapi/v6/renditions/0a3f9cceca9fc99ff0aae97024e812ee05a40e29", "name": "0a3f9cceca9fc99ff0aae97024e812ee05a40e29.jpg", "width": 500, "height": 282, "mime_type": "image/jpeg", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "THUMBNAIL", "content_path": "data\\\\repository\\\\thumb\\\\vol0\\\\198\\\\0a3f9cceca9fc99ff0aae97024e812ee05a40e29_0a3f9cceca9fc99ff0aae97024e812ee05a40e29.jpg", "content_size": 18485, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "video_rollover_content": {"id": "31a3c7cd354435e9acd9526f6ad41b4cc135bc99", "url": "/otmmapi/v6/renditions/31a3c7cd354435e9acd9526f6ad41b4cc135bc99", "name": "311NUTELLAXMASShareTheLoveGlas15sTVC16b9v01328ENMASTER.GIF", "width": 500, "height": 282, "mime_type": "image/gif", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "ROLLOVER", "content_path": "data\\\\repository\\\\rollover\\\\vol0\\\\16\\\\31a3c7cd354435e9acd9526f6ad41b4cc135bc99_rollover.gif", "content_size": 8143010, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_content_info": {"master_content": {"id": "83f0c62f35610a275494d0102fa7112426010786", "url": "/otmmapi/v6/renditions/83f0c62f35610a275494d0102fa7112426010786", "name": "311NUTELLAXMASShareTheLoveGlas15sTVC16b9v01328ENMASTER.mp4", "width": -1, "height": -1, "mime_type": "video/mp4", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\224\\\\311NUTELLAXMASShareTheLoveGlas15sTVC16b9v01328ENMASTER_83f0c62f35610a275494d0102fa7112426010786.mp4", "content_size": 39659656, "unit_of_size": "BYTES", "content_checksum": "cf0a153e1366267bc3427c0045106947", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "supporting_content": [{"id": "9e8d3c3cb542301100e0a21afeede678d6f448f6", "url": "/otmmapi/v6/renditions/9e8d3c3cb542301100e0a21afeede678d6f448f6", "name": "311NUTELLAXMASShareTheLoveGlas15sTVC16b9v01328ENMASTER.mp4", "width": 640, "height": 360, "mime_type": "video/mp4", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "SUPPORTING", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\224\\\\9e8d3c3cb542301100e0a21afeede678d6f448f6_proxy.mp4", "content_size": 1721977, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}]}, "asset_state_user_id": "1003", "master_content_info": {"id": "83f0c62f35610a275494d0102fa7112426010786", "url": "/otmmapi/v6/renditions/83f0c62f35610a275494d0102fa7112426010786", "name": "311NUTELLAXMASShareTheLoveGlas15sTVC16b9v01328ENMASTER.mp4", "width": -1, "height": -1, "mime_type": "video/mp4", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\224\\\\311NUTELLAXMASShareTheLoveGlas15sTVC16b9v01328ENMASTER_83f0c62f35610a275494d0102fa7112426010786.mp4", "content_size": 39659656, "unit_of_size": "BYTES", "content_checksum": "cf0a153e1366267bc3427c0045106947", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "delivery_service_url": "https://ppr.dam.ferrero.com/adaptivemedia/rendition?id=a6d042144bd706efc71c3e57c061b39775dcb74c", "product_associations": false, "security_policy_list": [{"id": 5467, "name": "Marketing Viewer", "status": "NORMAL", "created_by": "1003", "create_date": "2023-10-06T16:52:07.297+02:00", "description": "Marketing Viewer", "ownership_type": "PUBLIC"}], "thumbnail_content_id": "0a3f9cceca9fc99ff0aae97024e812ee05a40e29", "content_state_user_id": "1003", "content_state_user_name": "OTMM BusinessAdmin", "asset_lock_state_user_id": "1001", "metadata_state_user_name": "OTMM BusinessAdmin", "progressive_download_url": "https://ppr.dam.ferrero.com/video/data/repository/original/vol0/224/9e8d3c3cb542301100e0a21afeede678d6f448f6_proxy.mp4", "access_control_descriptor": {"permissions_map": {"entry": [{"key": "text.securityPolicy.permission.Custom04Permission", "value": true}, {"key": "text.securityPolicy.permission.ContentEditPermission", "value": true}, {"key": "text.securityPolicy.permission.AssetViewPermission", "value": true}, {"key": "text.securityPolicy.permission.ProjectViewPermission", "value": true}, {"key": "text.securityPolicy.permission.MembershipEditPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom03Permission", "value": true}, {"key": "text.securityPolicy.permission.MetaDataEditPermission", "value": true}, {"key": "text.securityPolicy.permission.EditParentsPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom02Permission", "value": true}, {"key": "text.securityPolicy.permission.ExportPermission", "value": true}, {"key": "text.securityPolicy.permission.SummaryViewPermission", "value": true}, {"key": "text.securityPolicy.permission.PreviewViewPermission", "value": true}, {"key": "text.securityPolicy.permission.SubscribePermission", "value": true}, {"key": "text.securityPolicy.permission.DeleteAssetPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom01Permission", "value": true}]}}, "content_lock_state_user_id": "1003", "asset_state_last_update_date": "2025-11-11T17:19:05.06+01:00", "content_lock_state_user_name": "bizAdmin", "metadata_lock_state_user_name": "tsuper", "content_state_last_update_date": "2025-11-11T17:12:23.673+01:00", "inherited_metadata_collections": [{"container_id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "container_name": "00. Master Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "originator_id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00. Master Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "847c0ede25c32edd97546221fe54fb392431848d", "container_name": "NUTELLA XMAS - PL ADAPTATION 3", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA XMAS - PL ADAPTATION 3"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000599"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA_XMAS_-_PL_A_JV_LA_PL_NUT_0000599"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CHRISTMAS"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local adaptation of global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000576"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2021/2022"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "A1"}, "display_value": "Local Campaign ready for localization", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.DEPARTMENTNAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "20c88462ba3557e7aae759665cbe331f693d398a", "container_name": "02. Campaigns", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "20c88462ba3557e7aae759665cbe331f693d398a", "originator_id": "20c88462ba3557e7aae759665cbe331f693d398a", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "02. Campaigns"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "container_name": "01.Standard", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "originator_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "01.Standard"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "container_name": "01.Poland", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "originator_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "01.Poland"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "container_name": "PL", "container_type_id": "GLOBALMARKETUNIT", "container_type_name": "L6 - MARKET UNIT", "inherited_metadata_values": [{"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "b94dd71b732e3c1df6ae63216c53d4d4b0e7f002"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E39"}, "display_value": "POLAND", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "13063087b81ea172db42e69ed8e8fa013cd5bfe0"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Local PL Editable Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "bf49ba2a40d0d0dccee4d5de7381659b106dd89a"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Nutella Local PL Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "3c0070e420882e3e18f6097811cb60a67239003b"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "7f3c1933b61e900457ea6e2aab750303882873d4"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "b0c960759e48c0fcdcb650417179a614da95e866"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Local PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "6f603fcc63415e266dc35cf2314d31357a2966bf"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "495fa4f08769a021cfa907dfb7a903fade9bd19a"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "e3b647e172a89e1e7cbdd2964faff1bca8dcf520"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "6870cca056b54cd400a9fbd4fe75513e69cedcdd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "container_name": "01. PL - Nutella", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "5efe2981e6f9afca7ed3fc91a171f02162ef23e3"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E008"}, "display_value": "POLAND", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Local PL Editable Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0de507c8b9d1f5942b6376b6c2a2b3ec1097e42e"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E39"}, "display_value": "POLAND", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "ca70a6d55e4277ecbef2a01a593c614501cbcf74"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "3e9d669ab1047383d0416ba40af75744148c94c8"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0e241fc386dcd91baa31a409e297169fe4a352c2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "2e3e0f2be0e487b540d9b63cb8c0e9ed9c6b1bb6"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "359c98154f230a60acc6b4eb048e129411d7a778"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "e92f9f10c0c29dda8261218c2c72a0baa66472f2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "15dff42c3b196ba3ae5b3c2ea33f00e347e6f654"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0ae044cd9dddf86cd9406c9edc3996b18c430be0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "name": "AMMC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AMMC", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LOCAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "7806fed6127b50c21f6b03e1f7b63f3dedc1e8d1"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "4c8a2d6e178638bfacfeaf3f7f6f1000304693a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "name": "Product Asset Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Asset Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCT_ASSET_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "5353bb35177d792b073acc634e010df2908fde32", "container_name": "EU", "container_type_id": "GEOGRAPHYLOCAL", "container_type_name": "L4 - GEOGRAPHY LOCAL", "inherited_metadata_values": [{"id": "FERRERO.MARKET.FOLDER.GLOBAL", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "4c4d4bf36bf8b1ace55f990e78d6332a9cb20990"}, "metadata_element": {"id": "FERRERO.MARKET.FOLDER.GLOBAL", "name": "Global/Local (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "LOCAL"}, "display_value": "Local", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local (Marketing)", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "GLOBALLOCAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_AREA", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "3dc200c993ab8263952dc6da1498026f615f45dd"}, "metadata_element": {"id": "MARKETING_AREA", "name": "AREA", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E010"}, "display_value": "EUROPE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "AREA", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "AREA", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "AREA", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "dc7749c3e113ec9e0b9e9a3840ea55673ca5e49f"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "f2d658a3829c2ea158ae70a4b4e7928bcf88f8e2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "972d0258a82de85672bd84d8af68cdb67ad3d3ca"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "1212505ad3fe4c9d7458568f3d95aeb4c4e5c37e"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "9d1dfdef55ff7a3eb03552988ddf729c7a0f5107"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "54f006eeb366121a29ee98da33d437615dcd34e0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "1fd8802010e30d44cebb2f3eb090b12ac550f97d"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "be0dc9a87262ee7fd165237b531ba3b7aa93a260"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "2f99f0f0f9e43fb34df9222c8b73a86fb78e473e"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "container_name": "Nutella", "container_type_id": "GLOBALBRAND", "container_type_name": "L3 - BRAND", "inherited_metadata_values": [{"id": "FERRERO.TABULAR.NEW.BRAND", "tabular": true, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "9bb1c183135f5240f09132aef59c4ea48c762381"}, "metadata_element": {"id": "FERRERO.TABULAR.NEW.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF30"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND (Marketing)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF30"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "BRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TABULAR_BRAND", "column_name": "BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.NEW.BRAND", "parent_table_name": "BRAND (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "tabular": true, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "a37b13c02cba799378211e17b73234a0d836f9b6"}, "metadata_element": {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "JV"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND(HARMONIZED)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "JV"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.HARMONIZEDBRAND", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_HARMONIZEDBRAND", "column_name": "HARMONIZEDBRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.HARMONIZEDBRAND", "parent_table_name": "BRAND(HARMONIZED)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "AGENCY.COLLABORATION", "tabular": false, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "183d6e0957a9940f9b18ef44f46d957802b63397"}, "metadata_element": {"id": "AGENCY.COLLABORATION", "name": "Agency collaboration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency collaboration", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "AGENCY_COLLABORATION", "column_name": "AGENCY_COLLABORATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "AGENCY.SHARING", "tabular": false, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "d0e2b725ddfdc452cc3ba750bbe8ec059c6b01ba"}, "metadata_element": {"id": "AGENCY.SHARING", "name": "Agency sharing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency sharing", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "AGENCY_SHARING", "column_name": "AGENCY_SHARING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "CONTENT.SCALING.AGENCYNAME", "tabular": false, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "f9dfa695cc5ef8cd3fafada4e44cfdaa1522d58a"}, "metadata_element": {"id": "CONTENT.SCALING.AGENCYNAME", "name": "Content Scaling agency name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Scaling agency name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENTSCALING_AGENCYNAME", "column_name": "CONTENTSCALING_AGENCYNAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "container_name": "01. Nutella Core", "container_type_id": "GLOBALSUBCATEGORY", "container_type_name": "L2 - SUBCATEGORY", "inherited_metadata_values": [{"id": "MARKETING_SUBCATEGORY", "tabular": false, "value_id": {"uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "originator_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "inherited_field_id": "3000ad591e09b5c75f85fc2ccbb9ebeb31b3ab78"}, "metadata_element": {"id": "MARKETING_SUBCATEGORY", "name": "SUBCATEGORY", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Mart-Nutella-Core"}, "display_value": "Nutella Core", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "SUBCATEGORY", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "SUBCATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "SUBCATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "tabular": true, "value_id": {"uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "originator_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "inherited_field_id": "2c751ce760d88c0e271925ea5149348106944bfa"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Subcategory Owner", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_SUBCATEGORY_OWNER_TM", "column_name": "SUBCATEGORY_OWNER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "parent_table_name": "Subcategory Owner", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "container_name": "Nutella", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "originator_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E04"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "originator_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final Approver BPS ", "values": [{"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "103a6545e38f07f6e989a86c6ee7e10339a71a14", "container_name": "05. Final Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "103a6545e38f07f6e989a86c6ee7e10339a71a14", "originator_id": "103a6545e38f07f6e989a86c6ee7e10339a71a14", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "05. Final Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "container_name": "NUTELLA - CHRISTMAS 26 E2E", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA - CHRISTMAS 26 E2E"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000576"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA_-_CHRISTMA_JV_GL_MLT_NUT_0000576"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "BE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "BE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "BG"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "EE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "LT"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "LU"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "LV"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "MD"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "NL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "RO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2025/2026"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "B2"}, "display_value": "Master campaign received from Agency", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.DEPARTMENTNAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "container_name": "Global", "container_type_id": "GEOGRAPHYGLOBAL", "container_type_name": "L4 - GEOGRAPHY GLOBAL", "inherited_metadata_values": [{"id": "FERRERO.MARKET.FOLDER.GLOBAL", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "963db123044a8d3ff5d8f4aac56d35df77a7656c"}, "metadata_element": {"id": "FERRERO.MARKET.FOLDER.GLOBAL", "name": "Global/Local (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "GLOBAL"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local (Marketing)", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "GLOBALLOCAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_AREA", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "3a37ace6a53a93799e0e18773ba6c7e70305cc78"}, "metadata_element": {"id": "MARKETING_AREA", "name": "AREA", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AREA", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "AREA", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "AREA", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "9f64f884b41d2a8445f4d9cd60714e91024e8b13"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Global Editable Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "8847a6dfbebcf323a8170649b390af1a375c08b8"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Nutella Global Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "758e614412f11ecb58446966d328974daf253446"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "53df9e81ae46cf6bd2440643426224b1fb904aeb"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "name": "Published Security Policy - Restricted Visibility", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Global Published Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Security Policy - Restricted Visibility", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_VISIBILITY_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "6b410cc3e966037a3e534da53137d32856cd6bdb"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "b5f185da6208925fe296e074dbdfdd74678ad076"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "b9e4bba5fa277862093047710c3fccb44a553f91"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "a70b94dccf12d05fbcf6a1881e4726759d8714a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "134e6810dec03aed0a70f68bf16cdd3a390f99de"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "2c412cc87805c4f03622e671cd7cdd65402b5598"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "0f4d4a35b08b4d2aac7ce7cc18999a8e5f523edf"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.GLOBAL APPROVER", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "43af18c983afd26a477317ac0b608495d9e0b3df"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.GLOBAL APPROVER", "name": "Global approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "GLOBAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "00dacbe20687d3c5d0be9b4fc2997c572e3c36bf"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "0fbcf70c95f5d28645e7a6187f7c429d62e60380"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Global comm"}, "display_value": "Global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Global comm"}, "display_value": "Global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "container_name": "Oliver Read Only", "container_type_id": "L3 - Agency Structure", "container_type_name": "L3 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "55530f721f18c847e35d7c828edf53461b5014b0"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "330bb6f68316aab5c45f9fe34e047cce573c67cc"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "name": "Agency Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "AGENCY_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "e30e90d694f9935d4c15c4c78891beed8853a272"}, "metadata_element": {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "name": "Published Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "PUBLISHED_ASSET_SP_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "23b155c32d5c6142914b41458234c100812bbec8", "container_name": "Oliver", "container_type_id": "L2 - Agency Structure", "container_type_name": "L2 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.AGENCY", "tabular": false, "value_id": {"uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "originator_id": "23b155c32d5c6142914b41458234c100812bbec8", "inherited_field_id": "48fcbc397986aca5bb8722a95197dd0a46f19b4e"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_AGENCY", "column_name": "AGENCY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "container_name": "Z - Exchange", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "YY"}, "display_value": "AGENCIES", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Final Approver BPS ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}], "asset_lock_state_last_update_date": "2025-11-13T14:26:32.707+01:00", "content_lock_state_last_update_date": "2025-11-11T17:12:28.833+01:00"} \N \N active f \N \N 2025-11-21 03:23:20.943566 2025-11-21 03:23:20.943566 2025-11-21 03:23:20.943566 6 ffRgja b6cb6550aa23d9d98b78459df26ca2d6a563b842 N_nutella_outline .png \N image/png \N \N \N \N \N \N \N \N \N \N \N \N \N C000000576 847c0ede25c32edd97546221fe54fb392431848d C000000599 95c935af7e32719e82ee47bcae9cf772c01b51fa Box File ID: 2052714116516\nBox URL: https://app.box.com/file/2052714116516\nDAM Asset ID: b6cb6550aa23d9d98b78459df26ca2d6a563b842 {"name": "N_nutella_outline.png", "links": {"links": [], "source_id": "b6cb6550aa23d9d98b78459df26ca2d6a563b842"}, "locked": false, "deleted": false, "expired": false, "version": 1, "asset_id": "b6cb6550aa23d9d98b78459df26ca2d6a563b842", "metadata": {"id": "ECOMMERCE", "name": "Marketing Asset", "type": "com.artesia.metadata.MetadataModel", "legacy_id": 116, "metadata_element_list": [{"id": "FERRERO.CATEGORY.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200054, "metadata_element_list": [{"id": "FERRERO.FIELD.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Status", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.CONTENT_STATUS", "edit_type": "COMBO_NOTNULL", "facetable": false, "searchable": true, "table_name": "FERRERO_CONTENT_STATUS_MD", "column_name": "CONTENT_STATUS", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9215, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRER.CATEGORY.ASSET_INFO", "name": "Asset Info", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200022, "metadata_element_list": [{"id": "FERRERO.FIELD.MKTG.ASSET TYPE", "name": "Asset Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "visualidentityelements"}, "display_value": "Visual Identity Elements", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.ASSETTYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.FISCAL YEAR", "name": "Release Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2025/2026"}, "display_value": "2025/2026", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Release Fiscal Year", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_DOMAIN_FISCAL_YEAR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "FISCAL__YEAR", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "name": "Main Languages", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1210, "metadata_element_list": [{"id": "MAIN_LANGUAGES", "name": "MAIN LANGUAGES", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "MAIN LANGUAGES", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MAIN LAGUAGES_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MAIN_LANGUAGE_TABLE", "column_name": "MAIN_LANGUAGE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "parent_table_name": "Main Languages", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.ASSET DESCRIPTION", "name": "Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Description", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "DESCR", "data_length": 249, "description": "Descriptive information", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.FLAVOUR", "name": "Flavour", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Flavour", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.FLAVOUR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FLAVOUR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.SIZE", "name": "Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Size", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.SIZE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SIZE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1241, "metadata_element_list": [{"id": "FERRERO.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Compliance", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ASSETCOMPLIANCE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_COMPLIANCE", "column_name": "ASSET_COMPLIANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "parent_table_name": "Asset Compliance", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.TAG DETAILS", "name": "Tag Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 118, "metadata_element_list": [{"id": "ARTESIA.FIELD.TAG", "name": "Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "design", "field_value": {"type": "string", "value": "design"}, "display_value": "design", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Tag", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "design", "field_value": {"type": "string", "value": "design"}, "display_value": "design", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "text", "field_value": {"type": "string", "value": "text"}, "display_value": "text", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "graphic", "field_value": {"type": "string", "value": "graphic"}, "display_value": "graphic", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "typography", "field_value": {"type": "string", "value": "typography"}, "display_value": "typography", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "symbol", "field_value": {"type": "string", "value": "symbol"}, "display_value": "symbol", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "logo", "field_value": {"type": "string", "value": "logo"}, "display_value": "logo", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "illustration", "field_value": {"type": "string", "value": "illustration"}, "display_value": "illustration", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "font", "field_value": {"type": "string", "value": "font"}, "display_value": "font", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "vector graphics", "field_value": {"type": "string", "value": "vector graphics"}, "display_value": "vector graphics", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.TAGS", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "OTMM_TAGS", "column_name": "TAG", "data_length": 80, "description": "Tag", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG CONFIDENCE", "name": "Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 97.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Confidence", "values": [{"value": {"type": "decimal", "value": 97.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 91.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 91.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 83.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 70.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 54.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 54.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 54.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 25.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Confidence", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG TYPE", "name": "Tag Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Tag Type", "values": [{"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "TAG_TYPE", "data_length": 10, "description": "Tag Type", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED BY", "name": "Associated By", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Associated By", "values": [{"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_BY", "data_length": 10, "description": "Associated By", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED DATE", "name": "Associated Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-11-12T16:12:27.403+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Associated Date", "values": [{"value": {"type": "dateTime", "value": "2025-11-12T16:12:27.403+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-11-12T16:12:27.403+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-11-12T16:12:27.403+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-11-12T16:12:27.403+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-11-12T16:12:27.403+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-11-12T16:12:27.407+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-11-12T16:12:27.407+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-11-12T16:12:27.407+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-11-12T16:12:27.407+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_DATE", "data_length": 10, "description": "Associated Date", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.STATE", "name": "Global/Local", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "GLOBAL"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO_NOTNULL", "facetable": true, "searchable": true, "table_name": "FERRERO_IC_ASSET_DETAILS", "column_name": "ASSET_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.ASPECT RATIO", "name": "Aspect Ratio (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio (Marketing)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASPECT_RATIO", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASPECT_RATIO", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "name": "Tag (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1222, "metadata_element_list": [{"id": "MARKETING_TAG", "name": "Marketing Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Marketing Tag", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.DOMAIN.TAG", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TAG_MARKET", "column_name": "TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "parent_table_name": "Tag (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.TAGS", "name": "Auto-Generated Tags", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Auto-Generated Tags", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "AUTO_GENERATED_TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CERTIFIER", "name": "Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approver", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.MARKETING.FIELD.APPROVAL DATE", "name": "Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.LEGAL APPROVAL DATE", "name": "Legal Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CERTIFIER", "name": "IA&CC Certifier", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Certifier", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CC APPROVAL DATE", "name": "IA&CC Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "name": "Extended Approval", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1230, "metadata_element_list": [{"id": "FERRERO.FIELD.EXTENDED.APPROVAL", "name": "Extended Approval required by:", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended Approval required by:", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COMMENTS", "name": "Comment", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comment", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "COMMENTS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.DATE", "name": "Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USERS", "name": "User ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "User ID", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "USERS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXTENDED.JOBID", "name": "Extended JobID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended JobID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.MIGRATION.INDEX", "name": "Migration Index", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Migration Index", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MIGRATION.INDEX", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MIGRATION_INDEX", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "FERRERO_MARKET_MARKETING_CREATOR", "name": "Marketing Creator", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Marketing Creator", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.CREATOR", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MARKETING_CREATOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "ARTESIA.FIELD.IS LATEST VERSION", "name": "Is Latest Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Y"}, "display_value": "Yes", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Is Latest Version", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.YES_NO", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "IS_LATEST_VERSION", "data_length": 1, "description": "Is this the latest version? (Y/N)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET VERSION", "name": "Asset Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 1}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Version", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "INTEGER", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "VERSION", "data_length": 12, "description": "Version number of asset", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET_ID", "name": "Asset ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "b6cb6550aa23d9d98b78459df26ca2d6a563b842"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset ID", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "LOGICAL_UOI_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.ECOMMERCE STATUS", "name": "Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "PUBLISHED"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Status", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "ASSET_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CREATOR", "name": "Uploaded by", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Uploaded by", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_USER_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.FIELD.CREATION DATE", "name": "Upload Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-11-12T16:11:38.94+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Upload Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_DT", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.ASSET NAME", "name": "Asset Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "N_nutella_outline.png"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Name", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "description": "Original name of master object", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.CONTENT TYPE", "name": "Content Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "BITMAP"}, "display_value": "Image", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Type", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.CONTENT_TYPES", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "CONTENT_TYPE", "data_length": 8, "description": "Content Type", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.MIME TYPE", "name": "File Extension", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "image/png"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Extension", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_MIME_TYPE", "data_length": 80, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.FILE.SIZE", "name": "File Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "long", "value": 29041}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Size", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "LONG", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_SIZE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP RESOLUTION", "name": "Bitmap Resolution", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 300}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Resolution", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_RESOLUTION", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP WIDTH", "name": "Bitmap Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 1875}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Width", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_WIDTH", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP HEIGHT", "name": "Bitmap Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 1828}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Height", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_HEIGHT", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.VIDEO.BIT_RATE", "name": "Bitrate", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitrate", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "BIT_RATE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.EMBEDDED.FIELD.DURATION", "name": "Duration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Duration", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "DURATION_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.ASPECT RATIO", "name": "Aspect Ratio", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "ASPECT_RATIO", "data_length": 30, "displayable": false, "instructions": "ASPECT_RATIO", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME HEIGHT", "name": "Frame Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Height", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_HEIGHT", "data_length": 12, "displayable": true, "instructions": "FRAME_HEIGHT", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME WIDTH", "name": "Frame Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Width", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_WIDTH", "data_length": 12, "displayable": true, "instructions": "FRAME_WIDTH", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.ASPECT.RATIO.POC", "name": "Aspect Ratio(POC)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio(POC)", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASPECT_RATIO_TABLE", "column_name": "ASPECT_RATIO", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "PRODUCT.DETAILS", "name": "Product Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200029, "metadata_element_list": [{"id": "FERRERO.TABLE.EANCODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1208, "metadata_element_list": [{"id": "EAN_CODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "EAN CODE/ 77 CODE", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "EAN.CODE", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "EAN_CODE", "column_name": "EAN_CODE_DESCRIPTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "COUNTRY", "name": "COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "EAN_CODE", "column_name": "COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKETING.ADVANCE.PRODUCT.LINK", "name": "Asset-to-product relation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset-to-product relation", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_MARKETING_ADVANCE_PRODUCT_LINK", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ADVANCE_PRODUCT_LINK", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 10182, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.SUB BRAND", "name": "Sub-Brands", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Sub-Brands", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.SUBBRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "SUB_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT WEIGHT", "name": "Product Weight", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Weight", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_WEIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.CONSUMER UNIT PACKAGING", "name": "Consumer Unit Packaging", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Consumer Unit Packaging", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PACK", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "CONSUMER_UNIT_PACKAGING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.4 DIGIT CODE", "name": "4 Digit Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "4 Digit Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "DIGITCODE", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERREO.ECOM.RETAILER_SPECIFIC_FIELD", "name": "Retailer Specific", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Retailer Specific", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "RETAILER_SPECIFIC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "cascading_group_id": "FERRERO.RETAILER.SPECIFIC", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY START PERIOD", "name": "Asset validity start period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity start period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_STARTING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY END PERIOD", "name": "Asset validity end period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity end period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_ENDING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.ASSET.NAMING.CONVENTION", "name": "Does asset need GS1 naming convention", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Does asset need GS1 naming convention", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASSETNAMINGCONVENTION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_NAMING_CONVENTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9515, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT VIEW", "name": "Product View", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product View", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT VIEW", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_VIEW", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT ANGLE", "name": "Product Angle", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Angle", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT.ANGLE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_ANGLE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT STATE", "name": "Product State", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product State", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT STATE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PROMOTION ID", "name": "Promo ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Promo ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROMO_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.BUSINESS.ASSET TYPE", "name": "Asset Type (eDAM)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Type (eDAM)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "OTMM.DOMAIN.OTMM_ASSETTYPE_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_BUSINESS_INFO", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7244, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200048, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.AGENCY NAME", "name": "Agency Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Agency Name", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.AGENCY_NAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AGENCY_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7336, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.CREATIX", "name": "CreativeX", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200059, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.CREATIVEX", "name": "Confidence", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1245, "metadata_element_list": [{"id": "FERRERO.TAB.FIELD.CREATIVEX", "name": "Platform > Rating (%)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Platform > Rating (%)", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_CREATIVEX", "column_name": "CREATIVEX_NEW", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CREATIVEX", "parent_table_name": "Confidence", "cascading_group_id": "FERRERO.CREATIVEX.CHAR", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.CREATIVEX LINK", "name": "CreativeX Hyperlink", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "CreativeX Hyperlink", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_CREATIVEX", "column_name": "CREATIVE_LINK", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.IP_RIGHTS", "name": "IP Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200046, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.IPRIGHT", "name": "IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "IP Rights", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.IPRIGHTS", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IP_RIGHTS", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.BUYOUT", "name": "Touchpoint Scope", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Touchpoint Scope", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.TOTAL_BUYOUT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TOTAL_BUYOUT", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.FERRERO PROPERTY", "name": "Ferrero Property", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Ferrero Property", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.FERRERO_PROPERTY", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FERRERO_PROPERTY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200035, "metadata_element_list": [{"id": "FERRERO.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1209, "metadata_element_list": [{"id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "name": "IP Coverage, Area, Region & Market Unit", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Coverage, Area, Region & Market Unit", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "IPCOVERAGE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "cascading_group_id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHT TYPE", "name": "Copyright Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHT_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.MEDIATYPE", "name": "Media Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Media Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MEDIA_TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "MEDIA_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE FROM", "name": "Expiration of Usage - From", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - From", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_FROM", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE TO", "name": "Expiration of Usage - To", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - To", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_TO", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO._DURATION", "name": "IP Duration", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Duration", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "ECOM_DURATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHTTYPE DETAILS", "name": "Copyright Type Details", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type Details", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHTTYPE_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 6, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.MARKET.VID_STAT_RIGHT", "name": "Video & Static Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200047, "metadata_element_list": [{"id": "FERRERO.MARKET.VID_N_STAT", "name": "Video and Static Right", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Video and Static Right", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VID_AND_STAT_RIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.VID_STAT_TYPE", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1221, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.TYPE_VID", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Video & Static Right", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TYPE_VID_STAT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_MARKET_TYPE_VID_STAT", "column_name": "TYPE_OF_VIDEO_STATIC_RIGHT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.VID_STAT_TYPE", "parent_table_name": "Type of Video & Static Right", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKET.PROD_COMPANY", "name": "Production House", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Production House", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.PRODUCT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200050, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.LICENSIN", "name": "Licensing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Licensing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSING", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "cascading_group_id": "FERRERO.MARKET.CG.LICENSE", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.SPOT_DETAILS", "name": "Spot Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200049, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.SPOT_VERSION", "name": "Spot Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Version", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_VERSION", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_VERSION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.SPOT_TYPE", "name": "Spot Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_TYPE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.DIRECTOR_NAME", "name": "Director Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Director Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "DIRECTOR_NAME", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VIDEO_POST_PROD_COMPANY", "name": "Video Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VID_POST_PROD_CONTACT", "name": "Video Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_COMPANY", "name": "Audio Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_CONTACT", "name": "Audio Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.BROADCASTER.CODE", "name": "Broadcaster Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Broadcaster Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BROADCASTER_CODE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.TECHNICAL_VALIDATION", "name": "Technical Validation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Technical Validation", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TECHNICAL_VALIDATION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS", "name": "Media Analysis", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1002, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "name": "Categories", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 105, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY NAME", "name": "Category Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "building_doorwindows"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Category Name", "values": [{"value": {"type": "string", "value": "building_doorwindows"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "others_"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "outdoor_"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "NAME", "data_length": 100, "description": "Category Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY CONFIDENCE", "name": "Category Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 11.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Category Confidence", "values": [{"value": {"type": "decimal", "value": 11.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 4.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 0.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "CONFIDENCE", "data_length": 10, "description": "Category Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES COUNT", "name": "Faces Count", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Faces Count", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACECOUNT", "column_name": "COUNT", "data_length": 10, "description": "Faces Count", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "name": "Face Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 106, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME", "name": "Recognized Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME", "data_length": 2000, "description": "Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME CONFIDENCE", "name": "Recognized Name Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME_CONFIDENCE", "data_length": 10, "description": "Name Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE", "name": "Person Age", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE", "data_length": 10, "description": "Person Age", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE CONFIDENCE", "name": "Person Age Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Person Age Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_CONFIDENCE", "data_length": 10, "description": "Person Age Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER", "name": "Gender", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Gender", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.GENDER", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER", "data_length": 40, "description": "Gender", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER CONFIDENCE", "name": "Gender Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Gender Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER_CONFIDENCE", "data_length": 10, "description": "Gender Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.FACE COORDS", "name": "Face Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "FACE_COORDS", "data_length": 200, "description": "Face Coordinates like postion, height,width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE GROUP", "name": "Person Age Group", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age Group", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.AGE GROUP", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_GROUP", "data_length": 10, "description": "Person Age Group", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "name": "Safe Content", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 107, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONTENT TYPE", "name": "Safe Content Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Safe Content Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENTS", "data_length": 20, "description": "Safe Content Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONFIDENCE", "name": "Content Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Content Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENT_CONFIDENCE", "data_length": 10, "description": "Safe Content Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "name": "Colors", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 108, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.NAME", "name": "Color", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "White"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Color", "values": [{"value": {"type": "string", "value": "White"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "Black"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "NAME", "data_length": 25, "description": "COLOR", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.PROPORTION", "name": "Color Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Color Confidence", "values": [{"is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "PROPORTION", "data_length": 10, "description": "Proportion", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.FOREGROUND", "name": "Foreground Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Black"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Foreground Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "FOREGROUND", "data_length": 25, "description": "Foreground Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.BACKGROUND", "name": "Background Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "White"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Background Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "BACKGROUND", "data_length": 25, "description": "Background Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.ISBW", "name": "Is Black and White", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "true"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Is Black and White", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "ISBW", "data_length": 10, "description": "Is Black and White", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "name": "Captions", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 109, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION TEXT", "name": "Caption Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "icon"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Caption Text", "values": [{"value": {"type": "string", "value": "icon"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "TEXT", "data_length": 2000, "description": "Caption Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION CONFIDENCE", "name": "Caption Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 38.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Caption Confidence", "values": [{"value": {"type": "decimal", "value": 38.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "CAPTION_CONFIDENCE", "data_length": 10, "description": "Caption Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "name": "Image Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 110, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.IMAGE TYPE", "name": "Analysis Image Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "clip_art"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Analysis Image Type", "values": [{"value": {"type": "string", "value": "clip_art"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_IMAGE_TYPE", "column_name": "TYPE", "data_length": 100, "description": "Image Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "parent_table_name": "Image Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.DATE", "name": "Date: Media Analysis", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-11-12T16:12:27+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date: Media Analysis", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MEDIA_ANALYSIS_DATE", "data_length": 25, "description": "Date Media Analysis was done on the asset.", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR LANGUAGE", "name": "Image Text Language", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "unk"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Image Text Language", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "LANGUAGE", "data_length": 10, "description": "OCR data language", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR TEXT", "name": "Text on Image", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Text on Image", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "TEXT", "data_length": 4000, "description": "OCR Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "name": "Embedded Brand Info", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 119, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.NAME", "name": "Embedded Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Embedded Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Embedded Brand Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.CONFIDENCE", "name": "Embedded Brand Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Embedded Brand Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Embedded Brand Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.COORDINATES", "name": "Embedded Brand Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Embedded Brand Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "COORDINATES", "data_length": 200, "description": "Embedded Brand Coordinates like position, height, width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "HYBRIS.PRODUCT.INFO", "name": "PIM Item Reference", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200027, "metadata_element_list": [{"id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "name": "Hybris Item Reference", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1206, "metadata_element_list": [{"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ID", "name": "Hybris Item ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ID", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT TAG NAME", "name": "Hybris Assignment Label", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Assignment Label", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_TAG_NAME", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ATTRIBUTE NAME", "name": "Hybris Attribute Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Attribute Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ATTRIBUTE_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT CATALOG NAME", "name": "Hybris Catalog Mnemonic", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Catalog Mnemonic", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_CATALOG_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT PK", "name": "Hybris Item PK", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item PK", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_PK", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.SYSTEM ID", "name": "Hybris System ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris System ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "SYSTEM_ID", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.ASSIGNED", "name": "Assigned", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Assigned", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "ASSIGNED", "column_name": "ASSIGNED", "data_length": 38, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PIM TYPE", "name": "PIM Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "PIM Type", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_PIM_TYPE", "column_name": "PIM_TYPE", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS VIDEO", "name": "Media Analysis Video", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1003, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "name": "Labels", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 113, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.ID", "name": "Label Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "ID", "data_length": 40, "description": "Label Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.NAME", "name": "Label Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "NAME", "data_length": 40, "description": "Label Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.APPEARANCES", "name": "Label Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "APPEARANCES", "data_length": 0, "description": "Label Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "name": "Sentiments", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 114, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.ID", "name": "Sentiment Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "ID", "data_length": 40, "description": "Sentiment Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.NAME", "name": "Sentiment Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "NAME", "data_length": 40, "description": "Sentiment Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.APPEARANCES", "name": "Sentiment Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "APPEARANCES", "data_length": 0, "description": "Sentiment Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.SEEN.DURATION.RATIO", "name": "Sentiment Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Sentiment Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "name": "Keywords", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 115, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.ID", "name": "Keyword Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "ID", "data_length": 40, "description": "Keyword Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.NAME", "name": "Keyword Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "NAME", "data_length": 40, "description": "Keyword Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.APPEARANCES", "name": "Keyword Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Keyword Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "name": "Faces", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 111, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.ID", "name": "Face Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "ID", "data_length": 40, "description": "Face Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.NAME", "name": "Face Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "NAME", "data_length": 40, "description": "Face Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.TITLE", "name": "Face Title", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Title", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "TITLE", "data_length": 249, "description": "Face Title", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.DESCRIPTION", "name": "Face Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Face Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.APPEARANCES", "name": "Face Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "APPEARANCES", "data_length": 0, "description": "Face Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SPEAKER.FACE.ID", "name": "Video Speaker Object Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Speaker Object Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "THUMBNAIL_OBJECT_ID", "data_length": 40, "description": "Video Speaker Object Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.SEEN.DURATION.RATIO", "name": "Face Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "SEEN_DURATION_RATIO", "data_length": 20, "description": "Face Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "name": "Brands", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 112, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.ID", "name": "Video Brand Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "ID", "data_length": 40, "description": "Brand Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.NAME", "name": "Video Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Brand Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.DESCRIPTION", "name": "Video Brand Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Brand Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.WIKIURL", "name": "Video Brand Wiki URL", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Wiki URL", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "WIKIURL", "data_length": 200, "description": "Brand Wiki URL", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.APPEARANCES", "name": "Video Brand Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Brand Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.SEEN.DURATION.RATIO", "name": "Video Brand Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Brand Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "name": "Speeches", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 116, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.ID", "name": "SpeechText Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "SpeechText Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "ID", "data_length": 40, "description": "SpeechText Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXT", "name": "Speech Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Text", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXT", "data_length": 1000, "description": "Speech Text", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXTTYPE", "name": "Speech Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXTTYPE", "data_length": 40, "description": "Speech Type", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.START TIME", "name": "Speech Start Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Start Time", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "START_TIME", "data_length": 40, "description": "Speech Start Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.END TIME", "name": "Speech End Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech End Time", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "END_TIME", "data_length": 40, "description": "Speech End Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "name": "Speakers", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 122, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.ID", "name": "Speaker Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "ID", "data_length": 40, "description": "Speaker Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.NAME", "name": "Speaker Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "NAME", "data_length": 100, "description": "Speaker Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.APPEARANCES", "name": "Speaker Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "APPEARANCES", "data_length": 0, "description": "Speaker Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.FIELDGROUP.LOCALASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200057, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1239, "metadata_element_list": [{"id": "FERRERO.FIELD.COUNTRY", "name": "LOCAL COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "LOCAL COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USER", "name": "USER", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "USER", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_USER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.ASSOCIATION", "name": "TYPE OF ASSOCIATION", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "TYPE OF ASSOCIATION", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_ASSOCIATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.VALUE", "name": "VALUE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "VALUE", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_VALUE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}], "has_multilingual_fields": false}, "mime_type": "image/png", "path_list": [{"parents": [{"id": "22ffc2d88af095463e48ab79e09886102f039563", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "22ffc2d88af095463e48ab79e09886102f039563", "sequence_number": 0}, {"id": "c6e6896565298d09d364f501aecd10d0998d8437", "name": "NUTELLA XMAS - PL ADAPTATION 2", "container_state": "NORMAL", "original_uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "sequence_number": 0}, {"id": "20c88462ba3557e7aae759665cbe331f693d398a", "name": "02. Campaigns", "container_state": "NORMAL", "original_uoi_id": "20c88462ba3557e7aae759665cbe331f693d398a", "sequence_number": 0}, {"id": "1638869b9b347c39842effc7e5ff965de47e8e65", "name": "01.Standard", "container_state": "NORMAL", "original_uoi_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "sequence_number": 0}, {"id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "name": "01.Poland", "container_state": "NORMAL", "original_uoi_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "sequence_number": 0}, {"id": "341bbf240ea033435cc225cd1add5c009bc067d7", "name": "PL", "container_state": "NORMAL", "original_uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "sequence_number": 0}, {"id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "name": "01. PL - Nutella", "container_state": "NORMAL", "original_uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "sequence_number": 0}, {"id": "5353bb35177d792b073acc634e010df2908fde32", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 1, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "sequence_number": 0}, {"id": "847c0ede25c32edd97546221fe54fb392431848d", "name": "NUTELLA XMAS - PL ADAPTATION 3", "container_state": "NORMAL", "original_uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "sequence_number": 0}, {"id": "20c88462ba3557e7aae759665cbe331f693d398a", "name": "02. Campaigns", "container_state": "NORMAL", "original_uoi_id": "20c88462ba3557e7aae759665cbe331f693d398a", "sequence_number": 0}, {"id": "1638869b9b347c39842effc7e5ff965de47e8e65", "name": "01.Standard", "container_state": "NORMAL", "original_uoi_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "sequence_number": 0}, {"id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "name": "01.Poland", "container_state": "NORMAL", "original_uoi_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "sequence_number": 0}, {"id": "341bbf240ea033435cc225cd1add5c009bc067d7", "name": "PL", "container_state": "NORMAL", "original_uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "sequence_number": 0}, {"id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "name": "01. PL - Nutella", "container_state": "NORMAL", "original_uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "sequence_number": 0}, {"id": "5353bb35177d792b073acc634e010df2908fde32", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 1, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "103a6545e38f07f6e989a86c6ee7e10339a71a14", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "103a6545e38f07f6e989a86c6ee7e10339a71a14", "sequence_number": 0}, {"id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "name": "NUTELLA - CHRISTMAS 26 E2E", "container_state": "NORMAL", "original_uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "sequence_number": 0}, {"id": "413c776f4416163b88737d53bb72dfe23bfd2430", "name": "Global", "container_state": "NORMAL", "original_uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 8, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "sequence_number": 0}, {"id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "name": "Oliver Read Only", "container_state": "NORMAL", "original_uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "sequence_number": 0}, {"id": "23b155c32d5c6142914b41458234c100812bbec8", "name": "Oliver", "container_state": "NORMAL", "original_uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "sequence_number": 0}, {"id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "name": "Z - Exchange", "container_state": "NORMAL", "original_uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "sequence_number": 0}], "complete": true, "sequence_number": 1, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "22ffc2d88af095463e48ab79e09886102f039563", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "22ffc2d88af095463e48ab79e09886102f039563", "sequence_number": 0}, {"id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "name": "Oliver Read Only", "container_state": "NORMAL", "original_uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "sequence_number": 0}, {"id": "23b155c32d5c6142914b41458234c100812bbec8", "name": "Oliver", "container_state": "NORMAL", "original_uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "sequence_number": 0}, {"id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "name": "Z - Exchange", "container_state": "NORMAL", "original_uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "sequence_number": 0}], "complete": true, "sequence_number": 1, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}], "creator_id": "1003", "asset_state": "NORMAL", "checked_out": false, "folder_path": "", "content_size": 29041, "content_type": "BITMAP", "content_state": "NORMAL", "date_imported": "2025-11-12T16:11:38.94+01:00", "import_job_id": 216974, "subscribed_to": false, "collection_ids": [], "latest_version": true, "legacy_model_id": 116, "content_editable": true, "import_user_name": "bizAdmin", "date_last_updated": "2025-11-12T16:14:23.157+01:00", "metadata_model_id": "ECOMMERCE", "original_asset_id": "b6cb6550aa23d9d98b78459df26ca2d6a563b842", "rendition_content": {"preview_content": {"id": "bf642002e7a9600311ba212e5b95fcf67ad8050d", "url": "/otmmapi/v6/renditions/bf642002e7a9600311ba212e5b95fcf67ad8050d", "name": "N_nutella_outline-S.png", "width": 788, "height": 768, "mime_type": "image/png", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "PREVIEW", "content_path": "data\\\\repository\\\\screen\\\\vol0\\\\184\\\\N_nutella_outline-S_bf642002e7a9600311ba212e5b95fcf67ad8050d.png", "content_size": 3131, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "thumbnail_content": {"id": "69ef55e5d8b3c9e632d439e017b4342324c53e3f", "url": "/otmmapi/v6/renditions/69ef55e5d8b3c9e632d439e017b4342324c53e3f", "name": "N_nutella_outline-T.png", "width": 788, "height": 768, "mime_type": "image/png", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "THUMBNAIL", "content_path": "data\\\\repository\\\\thumb\\\\vol0\\\\198\\\\N_nutella_outline-T_69ef55e5d8b3c9e632d439e017b4342324c53e3f.png", "content_size": 3131, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_content_info": {"master_content": {"id": "82c22ae321e9c870bad74f81b19dc65ca50d210e", "url": "/otmmapi/v6/renditions/82c22ae321e9c870bad74f81b19dc65ca50d210e", "name": "N_nutella_outline.png", "width": 1875, "height": 1828, "mime_type": "image/png", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\224\\\\N_nutella_outline_82c22ae321e9c870bad74f81b19dc65ca50d210e.png", "content_size": 29041, "unit_of_size": "BYTES", "content_checksum": "926c2cbf619a01cc120b4d386d1906cb", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_state_user_id": "1003", "master_content_info": {"id": "82c22ae321e9c870bad74f81b19dc65ca50d210e", "url": "/otmmapi/v6/renditions/82c22ae321e9c870bad74f81b19dc65ca50d210e", "name": "N_nutella_outline.png", "width": 1875, "height": 1828, "mime_type": "image/png", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\224\\\\N_nutella_outline_82c22ae321e9c870bad74f81b19dc65ca50d210e.png", "content_size": 29041, "unit_of_size": "BYTES", "content_checksum": "926c2cbf619a01cc120b4d386d1906cb", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "delivery_service_url": "https://ppr.dam.ferrero.com/adaptivemedia/rendition?id=b6cb6550aa23d9d98b78459df26ca2d6a563b842", "product_associations": false, "security_policy_list": [{"id": 5467, "name": "Marketing Viewer", "status": "NORMAL", "created_by": "1003", "create_date": "2023-10-06T16:52:07.297+02:00", "description": "Marketing Viewer", "ownership_type": "PUBLIC"}], "thumbnail_content_id": "69ef55e5d8b3c9e632d439e017b4342324c53e3f", "content_state_user_id": "1003", "content_state_user_name": "OTMM BusinessAdmin", "asset_lock_state_user_id": "1003", "metadata_state_user_name": "OTMM BusinessAdmin", "access_control_descriptor": {"permissions_map": {"entry": [{"key": "text.securityPolicy.permission.Custom04Permission", "value": true}, {"key": "text.securityPolicy.permission.ContentEditPermission", "value": true}, {"key": "text.securityPolicy.permission.AssetViewPermission", "value": true}, {"key": "text.securityPolicy.permission.ProjectViewPermission", "value": true}, {"key": "text.securityPolicy.permission.MembershipEditPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom03Permission", "value": true}, {"key": "text.securityPolicy.permission.MetaDataEditPermission", "value": true}, {"key": "text.securityPolicy.permission.EditParentsPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom02Permission", "value": true}, {"key": "text.securityPolicy.permission.ExportPermission", "value": true}, {"key": "text.securityPolicy.permission.SummaryViewPermission", "value": true}, {"key": "text.securityPolicy.permission.PreviewViewPermission", "value": true}, {"key": "text.securityPolicy.permission.SubscribePermission", "value": true}, {"key": "text.securityPolicy.permission.DeleteAssetPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom01Permission", "value": true}]}}, "content_lock_state_user_id": "1003", "asset_state_last_update_date": "2025-11-12T16:14:23.157+01:00", "content_lock_state_user_name": "bizAdmin", "metadata_lock_state_user_name": "bizAdmin", "content_state_last_update_date": "2025-11-12T16:11:39.187+01:00", "inherited_metadata_collections": [{"container_id": "22ffc2d88af095463e48ab79e09886102f039563", "container_name": "00. Master Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "22ffc2d88af095463e48ab79e09886102f039563", "originator_id": "22ffc2d88af095463e48ab79e09886102f039563", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00. Master Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "c6e6896565298d09d364f501aecd10d0998d8437", "container_name": "NUTELLA XMAS - PL ADAPTATION 2", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA XMAS - PL ADAPTATION 2"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000598"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA_XMAS_-_PL__JV_LA_MLT_NUT_0000598"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CHRISTMAS"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local adaptation of global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000576"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "EE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "EE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "LT"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "LV"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2024/2025"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "A5"}, "display_value": "Rework needed from Agency", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.DEPARTMENTNAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "20c88462ba3557e7aae759665cbe331f693d398a", "container_name": "02. Campaigns", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "20c88462ba3557e7aae759665cbe331f693d398a", "originator_id": "20c88462ba3557e7aae759665cbe331f693d398a", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "02. Campaigns"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "container_name": "01.Standard", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "originator_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "01.Standard"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "container_name": "01.Poland", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "originator_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "01.Poland"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "container_name": "PL", "container_type_id": "GLOBALMARKETUNIT", "container_type_name": "L6 - MARKET UNIT", "inherited_metadata_values": [{"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "b94dd71b732e3c1df6ae63216c53d4d4b0e7f002"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E39"}, "display_value": "POLAND", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "13063087b81ea172db42e69ed8e8fa013cd5bfe0"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Local PL Editable Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "bf49ba2a40d0d0dccee4d5de7381659b106dd89a"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Nutella Local PL Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "3c0070e420882e3e18f6097811cb60a67239003b"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "7f3c1933b61e900457ea6e2aab750303882873d4"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "b0c960759e48c0fcdcb650417179a614da95e866"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Local PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "6f603fcc63415e266dc35cf2314d31357a2966bf"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "495fa4f08769a021cfa907dfb7a903fade9bd19a"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "e3b647e172a89e1e7cbdd2964faff1bca8dcf520"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "6870cca056b54cd400a9fbd4fe75513e69cedcdd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "container_name": "01. PL - Nutella", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "5efe2981e6f9afca7ed3fc91a171f02162ef23e3"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E008"}, "display_value": "POLAND", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Local PL Editable Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0de507c8b9d1f5942b6376b6c2a2b3ec1097e42e"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E39"}, "display_value": "POLAND", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "ca70a6d55e4277ecbef2a01a593c614501cbcf74"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "3e9d669ab1047383d0416ba40af75744148c94c8"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0e241fc386dcd91baa31a409e297169fe4a352c2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "2e3e0f2be0e487b540d9b63cb8c0e9ed9c6b1bb6"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "359c98154f230a60acc6b4eb048e129411d7a778"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "e92f9f10c0c29dda8261218c2c72a0baa66472f2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "15dff42c3b196ba3ae5b3c2ea33f00e347e6f654"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0ae044cd9dddf86cd9406c9edc3996b18c430be0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "name": "AMMC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AMMC", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LOCAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "7806fed6127b50c21f6b03e1f7b63f3dedc1e8d1"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "4c8a2d6e178638bfacfeaf3f7f6f1000304693a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "name": "Product Asset Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Asset Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCT_ASSET_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "5353bb35177d792b073acc634e010df2908fde32", "container_name": "EU", "container_type_id": "GEOGRAPHYLOCAL", "container_type_name": "L4 - GEOGRAPHY LOCAL", "inherited_metadata_values": [{"id": "FERRERO.MARKET.FOLDER.GLOBAL", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "4c4d4bf36bf8b1ace55f990e78d6332a9cb20990"}, "metadata_element": {"id": "FERRERO.MARKET.FOLDER.GLOBAL", "name": "Global/Local (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "LOCAL"}, "display_value": "Local", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local (Marketing)", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "GLOBALLOCAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_AREA", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "3dc200c993ab8263952dc6da1498026f615f45dd"}, "metadata_element": {"id": "MARKETING_AREA", "name": "AREA", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E010"}, "display_value": "EUROPE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "AREA", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "AREA", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "AREA", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "dc7749c3e113ec9e0b9e9a3840ea55673ca5e49f"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "f2d658a3829c2ea158ae70a4b4e7928bcf88f8e2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "972d0258a82de85672bd84d8af68cdb67ad3d3ca"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "1212505ad3fe4c9d7458568f3d95aeb4c4e5c37e"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "9d1dfdef55ff7a3eb03552988ddf729c7a0f5107"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "54f006eeb366121a29ee98da33d437615dcd34e0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "1fd8802010e30d44cebb2f3eb090b12ac550f97d"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "be0dc9a87262ee7fd165237b531ba3b7aa93a260"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "2f99f0f0f9e43fb34df9222c8b73a86fb78e473e"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "container_name": "Nutella", "container_type_id": "GLOBALBRAND", "container_type_name": "L3 - BRAND", "inherited_metadata_values": [{"id": "FERRERO.TABULAR.NEW.BRAND", "tabular": true, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "9bb1c183135f5240f09132aef59c4ea48c762381"}, "metadata_element": {"id": "FERRERO.TABULAR.NEW.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF30"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND (Marketing)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF30"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "BRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TABULAR_BRAND", "column_name": "BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.NEW.BRAND", "parent_table_name": "BRAND (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "tabular": true, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "a37b13c02cba799378211e17b73234a0d836f9b6"}, "metadata_element": {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "JV"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND(HARMONIZED)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "JV"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.HARMONIZEDBRAND", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_HARMONIZEDBRAND", "column_name": "HARMONIZEDBRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.HARMONIZEDBRAND", "parent_table_name": "BRAND(HARMONIZED)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "AGENCY.COLLABORATION", "tabular": false, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "183d6e0957a9940f9b18ef44f46d957802b63397"}, "metadata_element": {"id": "AGENCY.COLLABORATION", "name": "Agency collaboration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency collaboration", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "AGENCY_COLLABORATION", "column_name": "AGENCY_COLLABORATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "AGENCY.SHARING", "tabular": false, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "d0e2b725ddfdc452cc3ba750bbe8ec059c6b01ba"}, "metadata_element": {"id": "AGENCY.SHARING", "name": "Agency sharing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency sharing", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "AGENCY_SHARING", "column_name": "AGENCY_SHARING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "CONTENT.SCALING.AGENCYNAME", "tabular": false, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "f9dfa695cc5ef8cd3fafada4e44cfdaa1522d58a"}, "metadata_element": {"id": "CONTENT.SCALING.AGENCYNAME", "name": "Content Scaling agency name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Scaling agency name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENTSCALING_AGENCYNAME", "column_name": "CONTENTSCALING_AGENCYNAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "container_name": "01. Nutella Core", "container_type_id": "GLOBALSUBCATEGORY", "container_type_name": "L2 - SUBCATEGORY", "inherited_metadata_values": [{"id": "MARKETING_SUBCATEGORY", "tabular": false, "value_id": {"uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "originator_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "inherited_field_id": "3000ad591e09b5c75f85fc2ccbb9ebeb31b3ab78"}, "metadata_element": {"id": "MARKETING_SUBCATEGORY", "name": "SUBCATEGORY", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Mart-Nutella-Core"}, "display_value": "Nutella Core", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "SUBCATEGORY", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "SUBCATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "SUBCATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "tabular": true, "value_id": {"uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "originator_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "inherited_field_id": "2c751ce760d88c0e271925ea5149348106944bfa"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Subcategory Owner", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_SUBCATEGORY_OWNER_TM", "column_name": "SUBCATEGORY_OWNER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "parent_table_name": "Subcategory Owner", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "container_name": "Nutella", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "originator_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E04"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "originator_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final Approver BPS ", "values": [{"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "container_name": "00. Master Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "originator_id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00. Master Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "847c0ede25c32edd97546221fe54fb392431848d", "container_name": "NUTELLA XMAS - PL ADAPTATION 3", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA XMAS - PL ADAPTATION 3"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000599"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA_XMAS_-_PL_A_JV_LA_PL_NUT_0000599"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CHRISTMAS"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local adaptation of global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000576"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2021/2022"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "A1"}, "display_value": "Local Campaign ready for localization", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.DEPARTMENTNAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "103a6545e38f07f6e989a86c6ee7e10339a71a14", "container_name": "05. Final Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "103a6545e38f07f6e989a86c6ee7e10339a71a14", "originator_id": "103a6545e38f07f6e989a86c6ee7e10339a71a14", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "05. Final Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "container_name": "NUTELLA - CHRISTMAS 26 E2E", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA - CHRISTMAS 26 E2E"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000576"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA_-_CHRISTMA_JV_GL_MLT_NUT_0000576"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "BE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "BE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "BG"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "EE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "LT"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "LU"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "LV"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "MD"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "NL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "RO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2025/2026"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "B2"}, "display_value": "Master campaign received from Agency", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.DEPARTMENTNAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "container_name": "Global", "container_type_id": "GEOGRAPHYGLOBAL", "container_type_name": "L4 - GEOGRAPHY GLOBAL", "inherited_metadata_values": [{"id": "FERRERO.MARKET.FOLDER.GLOBAL", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "963db123044a8d3ff5d8f4aac56d35df77a7656c"}, "metadata_element": {"id": "FERRERO.MARKET.FOLDER.GLOBAL", "name": "Global/Local (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "GLOBAL"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local (Marketing)", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "GLOBALLOCAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_AREA", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "3a37ace6a53a93799e0e18773ba6c7e70305cc78"}, "metadata_element": {"id": "MARKETING_AREA", "name": "AREA", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AREA", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "AREA", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "AREA", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "9f64f884b41d2a8445f4d9cd60714e91024e8b13"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Global Editable Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "8847a6dfbebcf323a8170649b390af1a375c08b8"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Nutella Global Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "758e614412f11ecb58446966d328974daf253446"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "53df9e81ae46cf6bd2440643426224b1fb904aeb"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "name": "Published Security Policy - Restricted Visibility", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Global Published Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Security Policy - Restricted Visibility", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_VISIBILITY_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "6b410cc3e966037a3e534da53137d32856cd6bdb"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "b5f185da6208925fe296e074dbdfdd74678ad076"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "b9e4bba5fa277862093047710c3fccb44a553f91"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "a70b94dccf12d05fbcf6a1881e4726759d8714a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "134e6810dec03aed0a70f68bf16cdd3a390f99de"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "2c412cc87805c4f03622e671cd7cdd65402b5598"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "0f4d4a35b08b4d2aac7ce7cc18999a8e5f523edf"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.GLOBAL APPROVER", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "43af18c983afd26a477317ac0b608495d9e0b3df"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.GLOBAL APPROVER", "name": "Global approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "GLOBAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "00dacbe20687d3c5d0be9b4fc2997c572e3c36bf"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "0fbcf70c95f5d28645e7a6187f7c429d62e60380"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Global comm"}, "display_value": "Global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Global comm"}, "display_value": "Global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "container_name": "Oliver Read Only", "container_type_id": "L3 - Agency Structure", "container_type_name": "L3 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "55530f721f18c847e35d7c828edf53461b5014b0"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "330bb6f68316aab5c45f9fe34e047cce573c67cc"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "name": "Agency Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "AGENCY_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "e30e90d694f9935d4c15c4c78891beed8853a272"}, "metadata_element": {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "name": "Published Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "PUBLISHED_ASSET_SP_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "23b155c32d5c6142914b41458234c100812bbec8", "container_name": "Oliver", "container_type_id": "L2 - Agency Structure", "container_type_name": "L2 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.AGENCY", "tabular": false, "value_id": {"uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "originator_id": "23b155c32d5c6142914b41458234c100812bbec8", "inherited_field_id": "48fcbc397986aca5bb8722a95197dd0a46f19b4e"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_AGENCY", "column_name": "AGENCY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "container_name": "Z - Exchange", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "YY"}, "display_value": "AGENCIES", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Final Approver BPS ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}], "asset_lock_state_last_update_date": "2025-11-12T16:14:23.157+01:00", "content_lock_state_last_update_date": "2025-11-12T16:11:39.25+01:00"} \N \N active f \N \N 2025-11-21 03:23:24.404226 2025-11-21 03:23:24.404226 2025-11-21 03:23:24.404226 7 mX4TA4 889a0587b57b18f5e5bd192376b35a69c3abfd85 NUTELLA2024-047xmas25pos .svg \N image/svg-xml \N \N \N \N \N \N \N \N \N \N \N \N \N C000000576 847c0ede25c32edd97546221fe54fb392431848d C000000599 95c935af7e32719e82ee47bcae9cf772c01b51fa Box File ID: 2052713742504\nBox URL: https://app.box.com/file/2052713742504\nDAM Asset ID: 889a0587b57b18f5e5bd192376b35a69c3abfd85 {"name": "NUTELLA2024-047xmas25pos.svg", "links": {"links": [], "source_id": "889a0587b57b18f5e5bd192376b35a69c3abfd85"}, "locked": false, "deleted": false, "expired": false, "version": 1, "asset_id": "889a0587b57b18f5e5bd192376b35a69c3abfd85", "metadata": {"id": "ECOMMERCE", "name": "Marketing Asset", "type": "com.artesia.metadata.MetadataModel", "legacy_id": 116, "metadata_element_list": [{"id": "FERRERO.CATEGORY.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200054, "metadata_element_list": [{"id": "FERRERO.FIELD.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Status", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.CONTENT_STATUS", "edit_type": "COMBO_NOTNULL", "facetable": false, "searchable": true, "table_name": "FERRERO_CONTENT_STATUS_MD", "column_name": "CONTENT_STATUS", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9215, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRER.CATEGORY.ASSET_INFO", "name": "Asset Info", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200022, "metadata_element_list": [{"id": "FERRERO.FIELD.MKTG.ASSET TYPE", "name": "Asset Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "qrcode"}, "display_value": "QR code", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.ASSETTYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.FISCAL YEAR", "name": "Release Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2025/2026"}, "display_value": "2025/2026", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Release Fiscal Year", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_DOMAIN_FISCAL_YEAR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "FISCAL__YEAR", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "name": "Main Languages", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1210, "metadata_element_list": [{"id": "MAIN_LANGUAGES", "name": "MAIN LANGUAGES", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "MAIN LANGUAGES", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MAIN LAGUAGES_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MAIN_LANGUAGE_TABLE", "column_name": "MAIN_LANGUAGE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "parent_table_name": "Main Languages", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.ASSET DESCRIPTION", "name": "Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Description", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "DESCR", "data_length": 249, "description": "Descriptive information", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.FLAVOUR", "name": "Flavour", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Flavour", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.FLAVOUR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FLAVOUR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.SIZE", "name": "Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Size", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.SIZE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SIZE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1241, "metadata_element_list": [{"id": "FERRERO.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Compliance", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ASSETCOMPLIANCE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_COMPLIANCE", "column_name": "ASSET_COMPLIANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "parent_table_name": "Asset Compliance", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.TAG DETAILS", "name": "Tag Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 118, "metadata_element_list": [{"id": "ARTESIA.FIELD.TAG", "name": "Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "text", "field_value": {"type": "string", "value": "text"}, "display_value": "text", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Tag", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "text", "field_value": {"type": "string", "value": "text"}, "display_value": "text", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "design", "field_value": {"type": "string", "value": "design"}, "display_value": "design", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "illustration", "field_value": {"type": "string", "value": "illustration"}, "display_value": "illustration", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "cartoon", "field_value": {"type": "string", "value": "cartoon"}, "display_value": "cartoon", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "vector graphics", "field_value": {"type": "string", "value": "vector graphics"}, "display_value": "vector graphics", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.TAGS", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "OTMM_TAGS", "column_name": "TAG", "data_length": 80, "description": "Tag", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG CONFIDENCE", "name": "Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 98.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Confidence", "values": [{"value": {"type": "decimal", "value": 98.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 86.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 75.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 63.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 15.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Confidence", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG TYPE", "name": "Tag Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Tag Type", "values": [{"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "TAG_TYPE", "data_length": 10, "description": "Tag Type", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED BY", "name": "Associated By", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Associated By", "values": [{"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_BY", "data_length": 10, "description": "Associated By", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED DATE", "name": "Associated Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-11-12T16:12:23.387+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Associated Date", "values": [{"value": {"type": "dateTime", "value": "2025-11-12T16:12:23.387+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-11-12T16:12:23.387+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-11-12T16:12:23.387+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-11-12T16:12:23.387+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-11-12T16:12:23.387+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_DATE", "data_length": 10, "description": "Associated Date", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.STATE", "name": "Global/Local", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "GLOBAL"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO_NOTNULL", "facetable": true, "searchable": true, "table_name": "FERRERO_IC_ASSET_DETAILS", "column_name": "ASSET_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.ASPECT RATIO", "name": "Aspect Ratio (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio (Marketing)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASPECT_RATIO", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASPECT_RATIO", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "name": "Tag (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1222, "metadata_element_list": [{"id": "MARKETING_TAG", "name": "Marketing Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Marketing Tag", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.DOMAIN.TAG", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TAG_MARKET", "column_name": "TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "parent_table_name": "Tag (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.TAGS", "name": "Auto-Generated Tags", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Auto-Generated Tags", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "AUTO_GENERATED_TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CERTIFIER", "name": "Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approver", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.MARKETING.FIELD.APPROVAL DATE", "name": "Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.LEGAL APPROVAL DATE", "name": "Legal Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CERTIFIER", "name": "IA&CC Certifier", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Certifier", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CC APPROVAL DATE", "name": "IA&CC Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "name": "Extended Approval", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1230, "metadata_element_list": [{"id": "FERRERO.FIELD.EXTENDED.APPROVAL", "name": "Extended Approval required by:", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended Approval required by:", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COMMENTS", "name": "Comment", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comment", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "COMMENTS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.DATE", "name": "Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USERS", "name": "User ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "User ID", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "USERS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXTENDED.JOBID", "name": "Extended JobID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended JobID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.MIGRATION.INDEX", "name": "Migration Index", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Migration Index", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MIGRATION.INDEX", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MIGRATION_INDEX", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "FERRERO_MARKET_MARKETING_CREATOR", "name": "Marketing Creator", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Marketing Creator", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.CREATOR", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MARKETING_CREATOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "ARTESIA.FIELD.IS LATEST VERSION", "name": "Is Latest Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Y"}, "display_value": "Yes", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Is Latest Version", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.YES_NO", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "IS_LATEST_VERSION", "data_length": 1, "description": "Is this the latest version? (Y/N)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET VERSION", "name": "Asset Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 1}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Version", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "INTEGER", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "VERSION", "data_length": 12, "description": "Version number of asset", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET_ID", "name": "Asset ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "889a0587b57b18f5e5bd192376b35a69c3abfd85"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset ID", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "LOGICAL_UOI_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.ECOMMERCE STATUS", "name": "Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "PUBLISHED"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Status", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "ASSET_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CREATOR", "name": "Uploaded by", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Uploaded by", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_USER_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.FIELD.CREATION DATE", "name": "Upload Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-11-12T16:11:38.943+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Upload Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_DT", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.ASSET NAME", "name": "Asset Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA2024-047xmas25pos.svg"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Name", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "description": "Original name of master object", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.CONTENT TYPE", "name": "Content Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "BITMAP"}, "display_value": "Image", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Type", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.CONTENT_TYPES", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "CONTENT_TYPE", "data_length": 8, "description": "Content Type", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.MIME TYPE", "name": "File Extension", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "image/svg-xml"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Extension", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_MIME_TYPE", "data_length": 80, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.FILE.SIZE", "name": "File Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "long", "value": 135804}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Size", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "LONG", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_SIZE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP RESOLUTION", "name": "Bitmap Resolution", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 96}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Resolution", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_RESOLUTION", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP WIDTH", "name": "Bitmap Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 1148}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Width", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_WIDTH", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP HEIGHT", "name": "Bitmap Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 1148}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Height", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_HEIGHT", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.VIDEO.BIT_RATE", "name": "Bitrate", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitrate", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "BIT_RATE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.EMBEDDED.FIELD.DURATION", "name": "Duration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Duration", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "DURATION_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.ASPECT RATIO", "name": "Aspect Ratio", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "ASPECT_RATIO", "data_length": 30, "displayable": false, "instructions": "ASPECT_RATIO", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME HEIGHT", "name": "Frame Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Height", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_HEIGHT", "data_length": 12, "displayable": true, "instructions": "FRAME_HEIGHT", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME WIDTH", "name": "Frame Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Width", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_WIDTH", "data_length": 12, "displayable": true, "instructions": "FRAME_WIDTH", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.ASPECT.RATIO.POC", "name": "Aspect Ratio(POC)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "1:1"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio(POC)", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASPECT_RATIO_TABLE", "column_name": "ASPECT_RATIO", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "PRODUCT.DETAILS", "name": "Product Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200029, "metadata_element_list": [{"id": "FERRERO.TABLE.EANCODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1208, "metadata_element_list": [{"id": "EAN_CODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "EAN CODE/ 77 CODE", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "EAN.CODE", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "EAN_CODE", "column_name": "EAN_CODE_DESCRIPTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "COUNTRY", "name": "COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "EAN_CODE", "column_name": "COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKETING.ADVANCE.PRODUCT.LINK", "name": "Asset-to-product relation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset-to-product relation", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_MARKETING_ADVANCE_PRODUCT_LINK", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ADVANCE_PRODUCT_LINK", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 10182, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.SUB BRAND", "name": "Sub-Brands", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Sub-Brands", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.SUBBRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "SUB_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT WEIGHT", "name": "Product Weight", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Weight", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_WEIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.CONSUMER UNIT PACKAGING", "name": "Consumer Unit Packaging", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Consumer Unit Packaging", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PACK", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "CONSUMER_UNIT_PACKAGING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.4 DIGIT CODE", "name": "4 Digit Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "4 Digit Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "DIGITCODE", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERREO.ECOM.RETAILER_SPECIFIC_FIELD", "name": "Retailer Specific", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Retailer Specific", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "RETAILER_SPECIFIC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "cascading_group_id": "FERRERO.RETAILER.SPECIFIC", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY START PERIOD", "name": "Asset validity start period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity start period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_STARTING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY END PERIOD", "name": "Asset validity end period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity end period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_ENDING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.ASSET.NAMING.CONVENTION", "name": "Does asset need GS1 naming convention", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Does asset need GS1 naming convention", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASSETNAMINGCONVENTION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_NAMING_CONVENTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9515, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT VIEW", "name": "Product View", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product View", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT VIEW", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_VIEW", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT ANGLE", "name": "Product Angle", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Angle", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT.ANGLE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_ANGLE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT STATE", "name": "Product State", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product State", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT STATE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PROMOTION ID", "name": "Promo ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Promo ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROMO_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.BUSINESS.ASSET TYPE", "name": "Asset Type (eDAM)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Type (eDAM)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "OTMM.DOMAIN.OTMM_ASSETTYPE_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_BUSINESS_INFO", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7244, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200048, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.AGENCY NAME", "name": "Agency Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Agency Name", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.AGENCY_NAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AGENCY_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7336, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.CREATIX", "name": "CreativeX", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200059, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.CREATIVEX", "name": "Confidence", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1245, "metadata_element_list": [{"id": "FERRERO.TAB.FIELD.CREATIVEX", "name": "Platform > Rating (%)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Platform > Rating (%)", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_CREATIVEX", "column_name": "CREATIVEX_NEW", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CREATIVEX", "parent_table_name": "Confidence", "cascading_group_id": "FERRERO.CREATIVEX.CHAR", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.CREATIVEX LINK", "name": "CreativeX Hyperlink", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "CreativeX Hyperlink", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_CREATIVEX", "column_name": "CREATIVE_LINK", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.IP_RIGHTS", "name": "IP Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200046, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.IPRIGHT", "name": "IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "IP Rights", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.IPRIGHTS", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IP_RIGHTS", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.BUYOUT", "name": "Touchpoint Scope", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Touchpoint Scope", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.TOTAL_BUYOUT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TOTAL_BUYOUT", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.FERRERO PROPERTY", "name": "Ferrero Property", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Ferrero Property", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.FERRERO_PROPERTY", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FERRERO_PROPERTY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200035, "metadata_element_list": [{"id": "FERRERO.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1209, "metadata_element_list": [{"id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "name": "IP Coverage, Area, Region & Market Unit", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Coverage, Area, Region & Market Unit", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "IPCOVERAGE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "cascading_group_id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHT TYPE", "name": "Copyright Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHT_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.MEDIATYPE", "name": "Media Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Media Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MEDIA_TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "MEDIA_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE FROM", "name": "Expiration of Usage - From", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - From", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_FROM", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE TO", "name": "Expiration of Usage - To", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - To", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_TO", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO._DURATION", "name": "IP Duration", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Duration", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "ECOM_DURATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHTTYPE DETAILS", "name": "Copyright Type Details", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type Details", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHTTYPE_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 6, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.MARKET.VID_STAT_RIGHT", "name": "Video & Static Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200047, "metadata_element_list": [{"id": "FERRERO.MARKET.VID_N_STAT", "name": "Video and Static Right", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Video and Static Right", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VID_AND_STAT_RIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.VID_STAT_TYPE", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1221, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.TYPE_VID", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Video & Static Right", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TYPE_VID_STAT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_MARKET_TYPE_VID_STAT", "column_name": "TYPE_OF_VIDEO_STATIC_RIGHT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.VID_STAT_TYPE", "parent_table_name": "Type of Video & Static Right", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKET.PROD_COMPANY", "name": "Production House", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Production House", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.PRODUCT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200050, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.LICENSIN", "name": "Licensing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Licensing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSING", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "cascading_group_id": "FERRERO.MARKET.CG.LICENSE", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.SPOT_DETAILS", "name": "Spot Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200049, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.SPOT_VERSION", "name": "Spot Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Version", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_VERSION", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_VERSION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.SPOT_TYPE", "name": "Spot Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_TYPE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.DIRECTOR_NAME", "name": "Director Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Director Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "DIRECTOR_NAME", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VIDEO_POST_PROD_COMPANY", "name": "Video Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VID_POST_PROD_CONTACT", "name": "Video Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_COMPANY", "name": "Audio Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_CONTACT", "name": "Audio Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.BROADCASTER.CODE", "name": "Broadcaster Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Broadcaster Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BROADCASTER_CODE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.TECHNICAL_VALIDATION", "name": "Technical Validation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Technical Validation", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TECHNICAL_VALIDATION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS", "name": "Media Analysis", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1002, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "name": "Categories", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 105, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY NAME", "name": "Category Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "text_"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Category Name", "values": [{"value": {"type": "string", "value": "text_"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "NAME", "data_length": 100, "description": "Category Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY CONFIDENCE", "name": "Category Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 39.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Category Confidence", "values": [{"value": {"type": "decimal", "value": 39.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "CONFIDENCE", "data_length": 10, "description": "Category Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES COUNT", "name": "Faces Count", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Faces Count", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACECOUNT", "column_name": "COUNT", "data_length": 10, "description": "Faces Count", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "name": "Face Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 106, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME", "name": "Recognized Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME", "data_length": 2000, "description": "Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME CONFIDENCE", "name": "Recognized Name Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME_CONFIDENCE", "data_length": 10, "description": "Name Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE", "name": "Person Age", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE", "data_length": 10, "description": "Person Age", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE CONFIDENCE", "name": "Person Age Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Person Age Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_CONFIDENCE", "data_length": 10, "description": "Person Age Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER", "name": "Gender", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Gender", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.GENDER", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER", "data_length": 40, "description": "Gender", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER CONFIDENCE", "name": "Gender Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Gender Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER_CONFIDENCE", "data_length": 10, "description": "Gender Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.FACE COORDS", "name": "Face Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "FACE_COORDS", "data_length": 200, "description": "Face Coordinates like postion, height,width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE GROUP", "name": "Person Age Group", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age Group", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.AGE GROUP", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_GROUP", "data_length": 10, "description": "Person Age Group", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "name": "Safe Content", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 107, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONTENT TYPE", "name": "Safe Content Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Safe Content Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENTS", "data_length": 20, "description": "Safe Content Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONFIDENCE", "name": "Content Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Content Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENT_CONFIDENCE", "data_length": 10, "description": "Safe Content Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "name": "Colors", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 108, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.NAME", "name": "Color", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "White"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Color", "values": [{"value": {"type": "string", "value": "White"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "Black"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "NAME", "data_length": 25, "description": "COLOR", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.PROPORTION", "name": "Color Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Color Confidence", "values": [{"is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "PROPORTION", "data_length": 10, "description": "Proportion", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.FOREGROUND", "name": "Foreground Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "White"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Foreground Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "FOREGROUND", "data_length": 25, "description": "Foreground Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.BACKGROUND", "name": "Background Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "White"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Background Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "BACKGROUND", "data_length": 25, "description": "Background Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.ISBW", "name": "Is Black and White", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "true"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Is Black and White", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "ISBW", "data_length": 10, "description": "Is Black and White", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "name": "Captions", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 109, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION TEXT", "name": "Caption Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "qr code"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Caption Text", "values": [{"value": {"type": "string", "value": "qr code"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "TEXT", "data_length": 2000, "description": "Caption Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION CONFIDENCE", "name": "Caption Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 99.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Caption Confidence", "values": [{"value": {"type": "decimal", "value": 99.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "CAPTION_CONFIDENCE", "data_length": 10, "description": "Caption Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "name": "Image Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 110, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.IMAGE TYPE", "name": "Analysis Image Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "clip_art"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Analysis Image Type", "values": [{"value": {"type": "string", "value": "clip_art"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_IMAGE_TYPE", "column_name": "TYPE", "data_length": 100, "description": "Image Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "parent_table_name": "Image Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.DATE", "name": "Date: Media Analysis", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-11-12T16:12:23+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date: Media Analysis", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MEDIA_ANALYSIS_DATE", "data_length": 25, "description": "Date Media Analysis was done on the asset.", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR LANGUAGE", "name": "Image Text Language", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "unk"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Image Text Language", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "LANGUAGE", "data_length": 10, "description": "OCR data language", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR TEXT", "name": "Text on Image", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Text on Image", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "TEXT", "data_length": 4000, "description": "OCR Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "name": "Embedded Brand Info", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 119, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.NAME", "name": "Embedded Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Embedded Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Embedded Brand Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.CONFIDENCE", "name": "Embedded Brand Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Embedded Brand Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Embedded Brand Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.COORDINATES", "name": "Embedded Brand Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Embedded Brand Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "COORDINATES", "data_length": 200, "description": "Embedded Brand Coordinates like position, height, width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "HYBRIS.PRODUCT.INFO", "name": "PIM Item Reference", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200027, "metadata_element_list": [{"id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "name": "Hybris Item Reference", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1206, "metadata_element_list": [{"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ID", "name": "Hybris Item ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ID", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT TAG NAME", "name": "Hybris Assignment Label", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Assignment Label", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_TAG_NAME", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ATTRIBUTE NAME", "name": "Hybris Attribute Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Attribute Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ATTRIBUTE_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT CATALOG NAME", "name": "Hybris Catalog Mnemonic", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Catalog Mnemonic", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_CATALOG_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT PK", "name": "Hybris Item PK", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item PK", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_PK", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.SYSTEM ID", "name": "Hybris System ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris System ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "SYSTEM_ID", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.ASSIGNED", "name": "Assigned", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Assigned", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "ASSIGNED", "column_name": "ASSIGNED", "data_length": 38, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PIM TYPE", "name": "PIM Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "PIM Type", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_PIM_TYPE", "column_name": "PIM_TYPE", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS VIDEO", "name": "Media Analysis Video", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1003, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "name": "Labels", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 113, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.ID", "name": "Label Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "ID", "data_length": 40, "description": "Label Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.NAME", "name": "Label Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "NAME", "data_length": 40, "description": "Label Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.APPEARANCES", "name": "Label Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "APPEARANCES", "data_length": 0, "description": "Label Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "name": "Sentiments", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 114, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.ID", "name": "Sentiment Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "ID", "data_length": 40, "description": "Sentiment Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.NAME", "name": "Sentiment Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "NAME", "data_length": 40, "description": "Sentiment Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.APPEARANCES", "name": "Sentiment Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "APPEARANCES", "data_length": 0, "description": "Sentiment Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.SEEN.DURATION.RATIO", "name": "Sentiment Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Sentiment Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "name": "Keywords", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 115, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.ID", "name": "Keyword Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "ID", "data_length": 40, "description": "Keyword Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.NAME", "name": "Keyword Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "NAME", "data_length": 40, "description": "Keyword Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.APPEARANCES", "name": "Keyword Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Keyword Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "name": "Faces", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 111, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.ID", "name": "Face Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "ID", "data_length": 40, "description": "Face Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.NAME", "name": "Face Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "NAME", "data_length": 40, "description": "Face Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.TITLE", "name": "Face Title", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Title", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "TITLE", "data_length": 249, "description": "Face Title", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.DESCRIPTION", "name": "Face Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Face Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.APPEARANCES", "name": "Face Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "APPEARANCES", "data_length": 0, "description": "Face Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SPEAKER.FACE.ID", "name": "Video Speaker Object Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Speaker Object Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "THUMBNAIL_OBJECT_ID", "data_length": 40, "description": "Video Speaker Object Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.SEEN.DURATION.RATIO", "name": "Face Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "SEEN_DURATION_RATIO", "data_length": 20, "description": "Face Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "name": "Brands", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 112, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.ID", "name": "Video Brand Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "ID", "data_length": 40, "description": "Brand Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.NAME", "name": "Video Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Brand Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.DESCRIPTION", "name": "Video Brand Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Brand Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.WIKIURL", "name": "Video Brand Wiki URL", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Wiki URL", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "WIKIURL", "data_length": 200, "description": "Brand Wiki URL", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.APPEARANCES", "name": "Video Brand Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Brand Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.SEEN.DURATION.RATIO", "name": "Video Brand Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Brand Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "name": "Speeches", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 116, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.ID", "name": "SpeechText Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "SpeechText Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "ID", "data_length": 40, "description": "SpeechText Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXT", "name": "Speech Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Text", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXT", "data_length": 1000, "description": "Speech Text", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXTTYPE", "name": "Speech Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXTTYPE", "data_length": 40, "description": "Speech Type", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.START TIME", "name": "Speech Start Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Start Time", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "START_TIME", "data_length": 40, "description": "Speech Start Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.END TIME", "name": "Speech End Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech End Time", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "END_TIME", "data_length": 40, "description": "Speech End Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "name": "Speakers", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 122, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.ID", "name": "Speaker Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "ID", "data_length": 40, "description": "Speaker Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.NAME", "name": "Speaker Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "NAME", "data_length": 100, "description": "Speaker Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.APPEARANCES", "name": "Speaker Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "APPEARANCES", "data_length": 0, "description": "Speaker Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.FIELDGROUP.LOCALASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200057, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1239, "metadata_element_list": [{"id": "FERRERO.FIELD.COUNTRY", "name": "LOCAL COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "LOCAL COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USER", "name": "USER", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "USER", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_USER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.ASSOCIATION", "name": "TYPE OF ASSOCIATION", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "TYPE OF ASSOCIATION", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_ASSOCIATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.VALUE", "name": "VALUE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "VALUE", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_VALUE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}], "has_multilingual_fields": false}, "mime_type": "image/svg-xml", "path_list": [{"parents": [{"id": "22ffc2d88af095463e48ab79e09886102f039563", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "22ffc2d88af095463e48ab79e09886102f039563", "sequence_number": 0}, {"id": "c6e6896565298d09d364f501aecd10d0998d8437", "name": "NUTELLA XMAS - PL ADAPTATION 2", "container_state": "NORMAL", "original_uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "sequence_number": 0}, {"id": "20c88462ba3557e7aae759665cbe331f693d398a", "name": "02. Campaigns", "container_state": "NORMAL", "original_uoi_id": "20c88462ba3557e7aae759665cbe331f693d398a", "sequence_number": 0}, {"id": "1638869b9b347c39842effc7e5ff965de47e8e65", "name": "01.Standard", "container_state": "NORMAL", "original_uoi_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "sequence_number": 0}, {"id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "name": "01.Poland", "container_state": "NORMAL", "original_uoi_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "sequence_number": 0}, {"id": "341bbf240ea033435cc225cd1add5c009bc067d7", "name": "PL", "container_state": "NORMAL", "original_uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "sequence_number": 0}, {"id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "name": "01. PL - Nutella", "container_state": "NORMAL", "original_uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "sequence_number": 0}, {"id": "5353bb35177d792b073acc634e010df2908fde32", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 3, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "sequence_number": 0}, {"id": "847c0ede25c32edd97546221fe54fb392431848d", "name": "NUTELLA XMAS - PL ADAPTATION 3", "container_state": "NORMAL", "original_uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "sequence_number": 0}, {"id": "20c88462ba3557e7aae759665cbe331f693d398a", "name": "02. Campaigns", "container_state": "NORMAL", "original_uoi_id": "20c88462ba3557e7aae759665cbe331f693d398a", "sequence_number": 0}, {"id": "1638869b9b347c39842effc7e5ff965de47e8e65", "name": "01.Standard", "container_state": "NORMAL", "original_uoi_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "sequence_number": 0}, {"id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "name": "01.Poland", "container_state": "NORMAL", "original_uoi_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "sequence_number": 0}, {"id": "341bbf240ea033435cc225cd1add5c009bc067d7", "name": "PL", "container_state": "NORMAL", "original_uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "sequence_number": 0}, {"id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "name": "01. PL - Nutella", "container_state": "NORMAL", "original_uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "sequence_number": 0}, {"id": "5353bb35177d792b073acc634e010df2908fde32", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 2, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "103a6545e38f07f6e989a86c6ee7e10339a71a14", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "103a6545e38f07f6e989a86c6ee7e10339a71a14", "sequence_number": 0}, {"id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "name": "NUTELLA - CHRISTMAS 26 E2E", "container_state": "NORMAL", "original_uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "sequence_number": 0}, {"id": "413c776f4416163b88737d53bb72dfe23bfd2430", "name": "Global", "container_state": "NORMAL", "original_uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 9, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "sequence_number": 0}, {"id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "name": "Oliver Read Only", "container_state": "NORMAL", "original_uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "sequence_number": 0}, {"id": "23b155c32d5c6142914b41458234c100812bbec8", "name": "Oliver", "container_state": "NORMAL", "original_uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "sequence_number": 0}, {"id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "name": "Z - Exchange", "container_state": "NORMAL", "original_uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "sequence_number": 0}], "complete": true, "sequence_number": 2, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "22ffc2d88af095463e48ab79e09886102f039563", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "22ffc2d88af095463e48ab79e09886102f039563", "sequence_number": 0}, {"id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "name": "Oliver Read Only", "container_state": "NORMAL", "original_uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "sequence_number": 0}, {"id": "23b155c32d5c6142914b41458234c100812bbec8", "name": "Oliver", "container_state": "NORMAL", "original_uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "sequence_number": 0}, {"id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "name": "Z - Exchange", "container_state": "NORMAL", "original_uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "sequence_number": 0}], "complete": true, "sequence_number": 3, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}], "creator_id": "1003", "asset_state": "NORMAL", "checked_out": false, "folder_path": "", "content_size": 135804, "content_type": "BITMAP", "content_state": "NORMAL", "date_imported": "2025-11-12T16:11:38.943+01:00", "import_job_id": 216974, "subscribed_to": false, "collection_ids": [], "latest_version": true, "legacy_model_id": 116, "content_editable": true, "import_user_name": "bizAdmin", "date_last_updated": "2025-11-12T16:14:23.157+01:00", "metadata_model_id": "ECOMMERCE", "original_asset_id": "889a0587b57b18f5e5bd192376b35a69c3abfd85", "rendition_content": {"preview_content": {"id": "7c324a7741fbcbb0c5501324725d7d76b3593c4f", "url": "/otmmapi/v6/renditions/7c324a7741fbcbb0c5501324725d7d76b3593c4f", "name": "NUTELLA2024-047xmas25pos-S.png", "width": 768, "height": 768, "mime_type": "image/png", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "PREVIEW", "content_path": "data\\\\repository\\\\screen\\\\vol0\\\\184\\\\NUTELLA2024-047xmas25pos-S_7c324a7741fbcbb0c5501324725d7d76b3593c4f.png", "content_size": 24961, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "thumbnail_content": {"id": "420012dd3b0ba89d6fe919bd95161df5ee1a813c", "url": "/otmmapi/v6/renditions/420012dd3b0ba89d6fe919bd95161df5ee1a813c", "name": "NUTELLA2024-047xmas25pos-T.png", "width": 375, "height": 375, "mime_type": "image/png", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "THUMBNAIL", "content_path": "data\\\\repository\\\\thumb\\\\vol0\\\\198\\\\NUTELLA2024-047xmas25pos-T_420012dd3b0ba89d6fe919bd95161df5ee1a813c.png", "content_size": 9746, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_content_info": {"master_content": {"id": "5c1b73c0f02d16c235813d10724d8dcd498f8ca3", "url": "/otmmapi/v6/renditions/5c1b73c0f02d16c235813d10724d8dcd498f8ca3", "name": "NUTELLA2024-047xmas25pos.svg", "width": -1, "height": -1, "mime_type": "image/svg-xml", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\224\\\\NUTELLA2024-047xmas25pos_5c1b73c0f02d16c235813d10724d8dcd498f8ca3.svg", "content_size": 135804, "unit_of_size": "BYTES", "content_checksum": "55438484d736e2df037df96ff8d1f234", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_state_user_id": "1003", "master_content_info": {"id": "5c1b73c0f02d16c235813d10724d8dcd498f8ca3", "url": "/otmmapi/v6/renditions/5c1b73c0f02d16c235813d10724d8dcd498f8ca3", "name": "NUTELLA2024-047xmas25pos.svg", "width": -1, "height": -1, "mime_type": "image/svg-xml", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\224\\\\NUTELLA2024-047xmas25pos_5c1b73c0f02d16c235813d10724d8dcd498f8ca3.svg", "content_size": 135804, "unit_of_size": "BYTES", "content_checksum": "55438484d736e2df037df96ff8d1f234", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "delivery_service_url": "https://ppr.dam.ferrero.com/adaptivemedia/rendition?id=889a0587b57b18f5e5bd192376b35a69c3abfd85", "product_associations": false, "security_policy_list": [{"id": 5467, "name": "Marketing Viewer", "status": "NORMAL", "created_by": "1003", "create_date": "2023-10-06T16:52:07.297+02:00", "description": "Marketing Viewer", "ownership_type": "PUBLIC"}], "thumbnail_content_id": "420012dd3b0ba89d6fe919bd95161df5ee1a813c", "content_state_user_id": "1003", "content_state_user_name": "OTMM BusinessAdmin", "asset_lock_state_user_id": "1003", "metadata_state_user_name": "OTMM BusinessAdmin", "access_control_descriptor": {"permissions_map": {"entry": [{"key": "text.securityPolicy.permission.Custom04Permission", "value": true}, {"key": "text.securityPolicy.permission.ContentEditPermission", "value": true}, {"key": "text.securityPolicy.permission.AssetViewPermission", "value": true}, {"key": "text.securityPolicy.permission.ProjectViewPermission", "value": true}, {"key": "text.securityPolicy.permission.MembershipEditPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom03Permission", "value": true}, {"key": "text.securityPolicy.permission.MetaDataEditPermission", "value": true}, {"key": "text.securityPolicy.permission.EditParentsPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom02Permission", "value": true}, {"key": "text.securityPolicy.permission.ExportPermission", "value": true}, {"key": "text.securityPolicy.permission.SummaryViewPermission", "value": true}, {"key": "text.securityPolicy.permission.PreviewViewPermission", "value": true}, {"key": "text.securityPolicy.permission.SubscribePermission", "value": true}, {"key": "text.securityPolicy.permission.DeleteAssetPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom01Permission", "value": true}]}}, "content_lock_state_user_id": "1003", "asset_state_last_update_date": "2025-11-12T16:14:23.157+01:00", "content_lock_state_user_name": "bizAdmin", "metadata_lock_state_user_name": "bizAdmin", "content_state_last_update_date": "2025-11-12T16:11:39.217+01:00", "inherited_metadata_collections": [{"container_id": "22ffc2d88af095463e48ab79e09886102f039563", "container_name": "00. Master Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "22ffc2d88af095463e48ab79e09886102f039563", "originator_id": "22ffc2d88af095463e48ab79e09886102f039563", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00. Master Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "c6e6896565298d09d364f501aecd10d0998d8437", "container_name": "NUTELLA XMAS - PL ADAPTATION 2", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA XMAS - PL ADAPTATION 2"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000598"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA_XMAS_-_PL__JV_LA_MLT_NUT_0000598"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CHRISTMAS"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local adaptation of global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000576"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "EE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "EE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "LT"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "LV"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2024/2025"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "A5"}, "display_value": "Rework needed from Agency", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.DEPARTMENTNAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "20c88462ba3557e7aae759665cbe331f693d398a", "container_name": "02. Campaigns", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "20c88462ba3557e7aae759665cbe331f693d398a", "originator_id": "20c88462ba3557e7aae759665cbe331f693d398a", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "02. Campaigns"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "container_name": "01.Standard", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "originator_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "01.Standard"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "container_name": "01.Poland", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "originator_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "01.Poland"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "container_name": "PL", "container_type_id": "GLOBALMARKETUNIT", "container_type_name": "L6 - MARKET UNIT", "inherited_metadata_values": [{"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "b94dd71b732e3c1df6ae63216c53d4d4b0e7f002"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E39"}, "display_value": "POLAND", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "13063087b81ea172db42e69ed8e8fa013cd5bfe0"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Local PL Editable Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "bf49ba2a40d0d0dccee4d5de7381659b106dd89a"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Nutella Local PL Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "3c0070e420882e3e18f6097811cb60a67239003b"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "7f3c1933b61e900457ea6e2aab750303882873d4"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "b0c960759e48c0fcdcb650417179a614da95e866"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Local PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "6f603fcc63415e266dc35cf2314d31357a2966bf"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "495fa4f08769a021cfa907dfb7a903fade9bd19a"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "e3b647e172a89e1e7cbdd2964faff1bca8dcf520"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "6870cca056b54cd400a9fbd4fe75513e69cedcdd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "container_name": "01. PL - Nutella", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "5efe2981e6f9afca7ed3fc91a171f02162ef23e3"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E008"}, "display_value": "POLAND", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Local PL Editable Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0de507c8b9d1f5942b6376b6c2a2b3ec1097e42e"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E39"}, "display_value": "POLAND", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "ca70a6d55e4277ecbef2a01a593c614501cbcf74"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "3e9d669ab1047383d0416ba40af75744148c94c8"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0e241fc386dcd91baa31a409e297169fe4a352c2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "2e3e0f2be0e487b540d9b63cb8c0e9ed9c6b1bb6"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "359c98154f230a60acc6b4eb048e129411d7a778"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "e92f9f10c0c29dda8261218c2c72a0baa66472f2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "15dff42c3b196ba3ae5b3c2ea33f00e347e6f654"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0ae044cd9dddf86cd9406c9edc3996b18c430be0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "name": "AMMC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AMMC", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LOCAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "7806fed6127b50c21f6b03e1f7b63f3dedc1e8d1"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "4c8a2d6e178638bfacfeaf3f7f6f1000304693a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "name": "Product Asset Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Asset Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCT_ASSET_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "5353bb35177d792b073acc634e010df2908fde32", "container_name": "EU", "container_type_id": "GEOGRAPHYLOCAL", "container_type_name": "L4 - GEOGRAPHY LOCAL", "inherited_metadata_values": [{"id": "FERRERO.MARKET.FOLDER.GLOBAL", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "4c4d4bf36bf8b1ace55f990e78d6332a9cb20990"}, "metadata_element": {"id": "FERRERO.MARKET.FOLDER.GLOBAL", "name": "Global/Local (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "LOCAL"}, "display_value": "Local", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local (Marketing)", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "GLOBALLOCAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_AREA", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "3dc200c993ab8263952dc6da1498026f615f45dd"}, "metadata_element": {"id": "MARKETING_AREA", "name": "AREA", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E010"}, "display_value": "EUROPE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "AREA", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "AREA", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "AREA", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "dc7749c3e113ec9e0b9e9a3840ea55673ca5e49f"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "f2d658a3829c2ea158ae70a4b4e7928bcf88f8e2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "972d0258a82de85672bd84d8af68cdb67ad3d3ca"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "1212505ad3fe4c9d7458568f3d95aeb4c4e5c37e"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "9d1dfdef55ff7a3eb03552988ddf729c7a0f5107"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "54f006eeb366121a29ee98da33d437615dcd34e0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "1fd8802010e30d44cebb2f3eb090b12ac550f97d"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "be0dc9a87262ee7fd165237b531ba3b7aa93a260"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "2f99f0f0f9e43fb34df9222c8b73a86fb78e473e"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "container_name": "Nutella", "container_type_id": "GLOBALBRAND", "container_type_name": "L3 - BRAND", "inherited_metadata_values": [{"id": "FERRERO.TABULAR.NEW.BRAND", "tabular": true, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "9bb1c183135f5240f09132aef59c4ea48c762381"}, "metadata_element": {"id": "FERRERO.TABULAR.NEW.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF30"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND (Marketing)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF30"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "BRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TABULAR_BRAND", "column_name": "BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.NEW.BRAND", "parent_table_name": "BRAND (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "tabular": true, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "a37b13c02cba799378211e17b73234a0d836f9b6"}, "metadata_element": {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "JV"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND(HARMONIZED)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "JV"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.HARMONIZEDBRAND", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_HARMONIZEDBRAND", "column_name": "HARMONIZEDBRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.HARMONIZEDBRAND", "parent_table_name": "BRAND(HARMONIZED)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "AGENCY.COLLABORATION", "tabular": false, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "183d6e0957a9940f9b18ef44f46d957802b63397"}, "metadata_element": {"id": "AGENCY.COLLABORATION", "name": "Agency collaboration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency collaboration", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "AGENCY_COLLABORATION", "column_name": "AGENCY_COLLABORATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "AGENCY.SHARING", "tabular": false, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "d0e2b725ddfdc452cc3ba750bbe8ec059c6b01ba"}, "metadata_element": {"id": "AGENCY.SHARING", "name": "Agency sharing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency sharing", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "AGENCY_SHARING", "column_name": "AGENCY_SHARING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "CONTENT.SCALING.AGENCYNAME", "tabular": false, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "f9dfa695cc5ef8cd3fafada4e44cfdaa1522d58a"}, "metadata_element": {"id": "CONTENT.SCALING.AGENCYNAME", "name": "Content Scaling agency name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Scaling agency name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENTSCALING_AGENCYNAME", "column_name": "CONTENTSCALING_AGENCYNAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "container_name": "01. Nutella Core", "container_type_id": "GLOBALSUBCATEGORY", "container_type_name": "L2 - SUBCATEGORY", "inherited_metadata_values": [{"id": "MARKETING_SUBCATEGORY", "tabular": false, "value_id": {"uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "originator_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "inherited_field_id": "3000ad591e09b5c75f85fc2ccbb9ebeb31b3ab78"}, "metadata_element": {"id": "MARKETING_SUBCATEGORY", "name": "SUBCATEGORY", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Mart-Nutella-Core"}, "display_value": "Nutella Core", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "SUBCATEGORY", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "SUBCATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "SUBCATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "tabular": true, "value_id": {"uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "originator_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "inherited_field_id": "2c751ce760d88c0e271925ea5149348106944bfa"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Subcategory Owner", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_SUBCATEGORY_OWNER_TM", "column_name": "SUBCATEGORY_OWNER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "parent_table_name": "Subcategory Owner", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "container_name": "Nutella", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "originator_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E04"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "originator_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final Approver BPS ", "values": [{"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "container_name": "00. Master Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "originator_id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00. Master Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "847c0ede25c32edd97546221fe54fb392431848d", "container_name": "NUTELLA XMAS - PL ADAPTATION 3", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA XMAS - PL ADAPTATION 3"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000599"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA_XMAS_-_PL_A_JV_LA_PL_NUT_0000599"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CHRISTMAS"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local adaptation of global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000576"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2021/2022"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "A1"}, "display_value": "Local Campaign ready for localization", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.DEPARTMENTNAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "103a6545e38f07f6e989a86c6ee7e10339a71a14", "container_name": "05. Final Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "103a6545e38f07f6e989a86c6ee7e10339a71a14", "originator_id": "103a6545e38f07f6e989a86c6ee7e10339a71a14", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "05. Final Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "container_name": "NUTELLA - CHRISTMAS 26 E2E", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA - CHRISTMAS 26 E2E"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000576"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA_-_CHRISTMA_JV_GL_MLT_NUT_0000576"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "BE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "BE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "BG"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "EE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "LT"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "LU"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "LV"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "MD"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "NL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "RO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2025/2026"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "B2"}, "display_value": "Master campaign received from Agency", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.DEPARTMENTNAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "container_name": "Global", "container_type_id": "GEOGRAPHYGLOBAL", "container_type_name": "L4 - GEOGRAPHY GLOBAL", "inherited_metadata_values": [{"id": "FERRERO.MARKET.FOLDER.GLOBAL", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "963db123044a8d3ff5d8f4aac56d35df77a7656c"}, "metadata_element": {"id": "FERRERO.MARKET.FOLDER.GLOBAL", "name": "Global/Local (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "GLOBAL"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local (Marketing)", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "GLOBALLOCAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_AREA", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "3a37ace6a53a93799e0e18773ba6c7e70305cc78"}, "metadata_element": {"id": "MARKETING_AREA", "name": "AREA", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AREA", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "AREA", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "AREA", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "9f64f884b41d2a8445f4d9cd60714e91024e8b13"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Global Editable Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "8847a6dfbebcf323a8170649b390af1a375c08b8"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Nutella Global Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "758e614412f11ecb58446966d328974daf253446"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "53df9e81ae46cf6bd2440643426224b1fb904aeb"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "name": "Published Security Policy - Restricted Visibility", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Global Published Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Security Policy - Restricted Visibility", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_VISIBILITY_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "6b410cc3e966037a3e534da53137d32856cd6bdb"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "b5f185da6208925fe296e074dbdfdd74678ad076"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "b9e4bba5fa277862093047710c3fccb44a553f91"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "a70b94dccf12d05fbcf6a1881e4726759d8714a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "134e6810dec03aed0a70f68bf16cdd3a390f99de"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "2c412cc87805c4f03622e671cd7cdd65402b5598"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "0f4d4a35b08b4d2aac7ce7cc18999a8e5f523edf"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.GLOBAL APPROVER", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "43af18c983afd26a477317ac0b608495d9e0b3df"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.GLOBAL APPROVER", "name": "Global approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "GLOBAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "00dacbe20687d3c5d0be9b4fc2997c572e3c36bf"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "0fbcf70c95f5d28645e7a6187f7c429d62e60380"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Global comm"}, "display_value": "Global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Global comm"}, "display_value": "Global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "container_name": "Oliver Read Only", "container_type_id": "L3 - Agency Structure", "container_type_name": "L3 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "55530f721f18c847e35d7c828edf53461b5014b0"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "330bb6f68316aab5c45f9fe34e047cce573c67cc"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "name": "Agency Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "AGENCY_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "e30e90d694f9935d4c15c4c78891beed8853a272"}, "metadata_element": {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "name": "Published Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "PUBLISHED_ASSET_SP_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "23b155c32d5c6142914b41458234c100812bbec8", "container_name": "Oliver", "container_type_id": "L2 - Agency Structure", "container_type_name": "L2 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.AGENCY", "tabular": false, "value_id": {"uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "originator_id": "23b155c32d5c6142914b41458234c100812bbec8", "inherited_field_id": "48fcbc397986aca5bb8722a95197dd0a46f19b4e"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_AGENCY", "column_name": "AGENCY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "container_name": "Z - Exchange", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "YY"}, "display_value": "AGENCIES", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Final Approver BPS ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}], "asset_lock_state_last_update_date": "2025-11-12T16:14:23.157+01:00", "content_lock_state_last_update_date": "2025-11-12T16:11:39.25+01:00"} \N \N active f \N \N 2025-11-21 03:23:27.714219 2025-11-21 03:23:27.714219 2025-11-21 03:23:27.714219 8 IMxPeR 850c36af1e2ccfe2ae65018a5b56517647103dd0 Nutella4Global_e2e .mp4 \N video/mp4 \N \N \N \N \N \N \N \N \N \N \N \N \N C000000576 847c0ede25c32edd97546221fe54fb392431848d C000000599 95c935af7e32719e82ee47bcae9cf772c01b51fa Box File ID: 2052717080457\nBox URL: https://app.box.com/file/2052717080457\nDAM Asset ID: 850c36af1e2ccfe2ae65018a5b56517647103dd0 {"name": "Nutella4Global_e2e.mp4", "links": {"links": [], "source_id": "850c36af1e2ccfe2ae65018a5b56517647103dd0"}, "locked": false, "deleted": false, "expired": false, "version": 1, "asset_id": "850c36af1e2ccfe2ae65018a5b56517647103dd0", "metadata": {"id": "ECOMMERCE", "name": "Marketing Asset", "type": "com.artesia.metadata.MetadataModel", "legacy_id": 116, "metadata_element_list": [{"id": "FERRERO.CATEGORY.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200054, "metadata_element_list": [{"id": "FERRERO.FIELD.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Status", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.CONTENT_STATUS", "edit_type": "COMBO_NOTNULL", "facetable": false, "searchable": true, "table_name": "FERRERO_CONTENT_STATUS_MD", "column_name": "CONTENT_STATUS", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9215, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRER.CATEGORY.ASSET_INFO", "name": "Asset Info", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200022, "metadata_element_list": [{"id": "FERRERO.FIELD.MKTG.ASSET TYPE", "name": "Asset Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "beautyshot"}, "display_value": "E-COMM: Beauty shot", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.ASSETTYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.FISCAL YEAR", "name": "Release Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2025/2026"}, "display_value": "2025/2026", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Release Fiscal Year", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_DOMAIN_FISCAL_YEAR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "FISCAL__YEAR", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "name": "Main Languages", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1210, "metadata_element_list": [{"id": "MAIN_LANGUAGES", "name": "MAIN LANGUAGES", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "MAIN LANGUAGES", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MAIN LAGUAGES_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MAIN_LANGUAGE_TABLE", "column_name": "MAIN_LANGUAGE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "parent_table_name": "Main Languages", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.ASSET DESCRIPTION", "name": "Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Description", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "DESCR", "data_length": 249, "description": "Descriptive information", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.FLAVOUR", "name": "Flavour", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Flavour", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.FLAVOUR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FLAVOUR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.SIZE", "name": "Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Size", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.SIZE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SIZE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1241, "metadata_element_list": [{"id": "FERRERO.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Compliance", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ASSETCOMPLIANCE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_COMPLIANCE", "column_name": "ASSET_COMPLIANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "parent_table_name": "Asset Compliance", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.TAG DETAILS", "name": "Tag Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 118, "metadata_element_list": [{"id": "ARTESIA.FIELD.TAG", "name": "Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Tag", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.TAGS", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "OTMM_TAGS", "column_name": "TAG", "data_length": 80, "description": "Tag", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG CONFIDENCE", "name": "Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Confidence", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG TYPE", "name": "Tag Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Tag Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "TAG_TYPE", "data_length": 10, "description": "Tag Type", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED BY", "name": "Associated By", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Associated By", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_BY", "data_length": 10, "description": "Associated By", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED DATE", "name": "Associated Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Associated Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_DATE", "data_length": 10, "description": "Associated Date", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.STATE", "name": "Global/Local", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "GLOBAL"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO_NOTNULL", "facetable": true, "searchable": true, "table_name": "FERRERO_IC_ASSET_DETAILS", "column_name": "ASSET_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.ASPECT RATIO", "name": "Aspect Ratio (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio (Marketing)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASPECT_RATIO", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASPECT_RATIO", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "name": "Tag (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1222, "metadata_element_list": [{"id": "MARKETING_TAG", "name": "Marketing Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Marketing Tag", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.DOMAIN.TAG", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TAG_MARKET", "column_name": "TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "parent_table_name": "Tag (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.TAGS", "name": "Auto-Generated Tags", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Auto-Generated Tags", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "AUTO_GENERATED_TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CERTIFIER", "name": "Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approver", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.MARKETING.FIELD.APPROVAL DATE", "name": "Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.LEGAL APPROVAL DATE", "name": "Legal Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CERTIFIER", "name": "IA&CC Certifier", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Certifier", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CC APPROVAL DATE", "name": "IA&CC Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "name": "Extended Approval", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1230, "metadata_element_list": [{"id": "FERRERO.FIELD.EXTENDED.APPROVAL", "name": "Extended Approval required by:", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended Approval required by:", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COMMENTS", "name": "Comment", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comment", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "COMMENTS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.DATE", "name": "Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USERS", "name": "User ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "User ID", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "USERS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXTENDED.JOBID", "name": "Extended JobID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended JobID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.MIGRATION.INDEX", "name": "Migration Index", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Migration Index", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MIGRATION.INDEX", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MIGRATION_INDEX", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "FERRERO_MARKET_MARKETING_CREATOR", "name": "Marketing Creator", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Marketing Creator", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.CREATOR", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MARKETING_CREATOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "ARTESIA.FIELD.IS LATEST VERSION", "name": "Is Latest Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Y"}, "display_value": "Yes", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Is Latest Version", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.YES_NO", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "IS_LATEST_VERSION", "data_length": 1, "description": "Is this the latest version? (Y/N)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET VERSION", "name": "Asset Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 1}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Version", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "INTEGER", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "VERSION", "data_length": 12, "description": "Version number of asset", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET_ID", "name": "Asset ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "850c36af1e2ccfe2ae65018a5b56517647103dd0"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset ID", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "LOGICAL_UOI_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.ECOMMERCE STATUS", "name": "Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "PUBLISHED"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Status", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "ASSET_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CREATOR", "name": "Uploaded by", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Uploaded by", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_USER_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.FIELD.CREATION DATE", "name": "Upload Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-11-07T13:00:13.49+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Upload Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_DT", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.ASSET NAME", "name": "Asset Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella4Global_e2e.mp4"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Name", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "description": "Original name of master object", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.CONTENT TYPE", "name": "Content Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "VIDEO"}, "display_value": "Video", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Type", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.CONTENT_TYPES", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "CONTENT_TYPE", "data_length": 8, "description": "Content Type", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.MIME TYPE", "name": "File Extension", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "video/mp4"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Extension", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_MIME_TYPE", "data_length": 80, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.FILE.SIZE", "name": "File Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "long", "value": 7303279}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Size", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "LONG", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_SIZE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP RESOLUTION", "name": "Bitmap Resolution", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Resolution", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_RESOLUTION", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP WIDTH", "name": "Bitmap Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Width", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_WIDTH", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP HEIGHT", "name": "Bitmap Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Height", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_HEIGHT", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.VIDEO.BIT_RATE", "name": "Bitrate", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 2594415.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitrate", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "BIT_RATE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.EMBEDDED.FIELD.DURATION", "name": "Duration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00:00:22:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Duration", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "DURATION_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.ASPECT RATIO", "name": "Aspect Ratio", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "1.778"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "ASPECT_RATIO", "data_length": 30, "displayable": false, "instructions": "ASPECT_RATIO", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME HEIGHT", "name": "Frame Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 1080}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Height", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_HEIGHT", "data_length": 12, "displayable": true, "instructions": "FRAME_HEIGHT", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME WIDTH", "name": "Frame Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 1920}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Width", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_WIDTH", "data_length": 12, "displayable": true, "instructions": "FRAME_WIDTH", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.ASPECT.RATIO.POC", "name": "Aspect Ratio(POC)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "16:9"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio(POC)", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASPECT_RATIO_TABLE", "column_name": "ASPECT_RATIO", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "PRODUCT.DETAILS", "name": "Product Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200029, "metadata_element_list": [{"id": "FERRERO.TABLE.EANCODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1208, "metadata_element_list": [{"id": "EAN_CODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "EAN CODE/ 77 CODE", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "EAN.CODE", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "EAN_CODE", "column_name": "EAN_CODE_DESCRIPTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "COUNTRY", "name": "COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "EAN_CODE", "column_name": "COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKETING.ADVANCE.PRODUCT.LINK", "name": "Asset-to-product relation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset-to-product relation", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_MARKETING_ADVANCE_PRODUCT_LINK", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ADVANCE_PRODUCT_LINK", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 10182, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.SUB BRAND", "name": "Sub-Brands", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Sub-Brands", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.SUBBRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "SUB_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT WEIGHT", "name": "Product Weight", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Weight", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_WEIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.CONSUMER UNIT PACKAGING", "name": "Consumer Unit Packaging", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Consumer Unit Packaging", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PACK", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "CONSUMER_UNIT_PACKAGING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.4 DIGIT CODE", "name": "4 Digit Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "4 Digit Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "DIGITCODE", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERREO.ECOM.RETAILER_SPECIFIC_FIELD", "name": "Retailer Specific", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Retailer Specific", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "RETAILER_SPECIFIC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "cascading_group_id": "FERRERO.RETAILER.SPECIFIC", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY START PERIOD", "name": "Asset validity start period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity start period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_STARTING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY END PERIOD", "name": "Asset validity end period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity end period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_ENDING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.ASSET.NAMING.CONVENTION", "name": "Does asset need GS1 naming convention", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Does asset need GS1 naming convention", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASSETNAMINGCONVENTION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_NAMING_CONVENTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9515, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT VIEW", "name": "Product View", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product View", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT VIEW", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_VIEW", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT ANGLE", "name": "Product Angle", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Angle", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT.ANGLE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_ANGLE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT STATE", "name": "Product State", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product State", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT STATE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PROMOTION ID", "name": "Promo ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Promo ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROMO_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.BUSINESS.ASSET TYPE", "name": "Asset Type (eDAM)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Type (eDAM)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "OTMM.DOMAIN.OTMM_ASSETTYPE_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_BUSINESS_INFO", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7244, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200048, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.AGENCY NAME", "name": "Agency Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Agency Name", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.AGENCY_NAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AGENCY_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7336, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.CREATIX", "name": "CreativeX", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200059, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.CREATIVEX", "name": "Confidence", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1245, "metadata_element_list": [{"id": "FERRERO.TAB.FIELD.CREATIVEX", "name": "Platform > Rating (%)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Platform > Rating (%)", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_CREATIVEX", "column_name": "CREATIVEX_NEW", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CREATIVEX", "parent_table_name": "Confidence", "cascading_group_id": "FERRERO.CREATIVEX.CHAR", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.CREATIVEX LINK", "name": "CreativeX Hyperlink", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "CreativeX Hyperlink", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_CREATIVEX", "column_name": "CREATIVE_LINK", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.IP_RIGHTS", "name": "IP Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200046, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.IPRIGHT", "name": "IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "IP Rights", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.IPRIGHTS", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IP_RIGHTS", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.BUYOUT", "name": "Touchpoint Scope", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Touchpoint Scope", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.TOTAL_BUYOUT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TOTAL_BUYOUT", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.FERRERO PROPERTY", "name": "Ferrero Property", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Ferrero Property", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.FERRERO_PROPERTY", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FERRERO_PROPERTY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200035, "metadata_element_list": [{"id": "FERRERO.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1209, "metadata_element_list": [{"id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "name": "IP Coverage, Area, Region & Market Unit", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Coverage, Area, Region & Market Unit", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "IPCOVERAGE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "cascading_group_id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHT TYPE", "name": "Copyright Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHT_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.MEDIATYPE", "name": "Media Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Media Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MEDIA_TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "MEDIA_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE FROM", "name": "Expiration of Usage - From", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - From", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_FROM", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE TO", "name": "Expiration of Usage - To", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - To", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_TO", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO._DURATION", "name": "IP Duration", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Duration", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "ECOM_DURATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHTTYPE DETAILS", "name": "Copyright Type Details", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type Details", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHTTYPE_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 6, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.MARKET.VID_STAT_RIGHT", "name": "Video & Static Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200047, "metadata_element_list": [{"id": "FERRERO.MARKET.VID_N_STAT", "name": "Video and Static Right", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Video and Static Right", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VID_AND_STAT_RIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.VID_STAT_TYPE", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1221, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.TYPE_VID", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Video & Static Right", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TYPE_VID_STAT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_MARKET_TYPE_VID_STAT", "column_name": "TYPE_OF_VIDEO_STATIC_RIGHT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.VID_STAT_TYPE", "parent_table_name": "Type of Video & Static Right", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKET.PROD_COMPANY", "name": "Production House", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Production House", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.PRODUCT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200050, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.LICENSIN", "name": "Licensing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Licensing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSING", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "cascading_group_id": "FERRERO.MARKET.CG.LICENSE", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.SPOT_DETAILS", "name": "Spot Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200049, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.SPOT_VERSION", "name": "Spot Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Version", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_VERSION", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_VERSION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.SPOT_TYPE", "name": "Spot Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_TYPE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.DIRECTOR_NAME", "name": "Director Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Director Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "DIRECTOR_NAME", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VIDEO_POST_PROD_COMPANY", "name": "Video Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VID_POST_PROD_CONTACT", "name": "Video Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_COMPANY", "name": "Audio Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_CONTACT", "name": "Audio Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.BROADCASTER.CODE", "name": "Broadcaster Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Broadcaster Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BROADCASTER_CODE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.TECHNICAL_VALIDATION", "name": "Technical Validation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Technical Validation", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TECHNICAL_VALIDATION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS", "name": "Media Analysis", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1002, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "name": "Categories", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 105, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY NAME", "name": "Category Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Category Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "NAME", "data_length": 100, "description": "Category Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY CONFIDENCE", "name": "Category Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Category Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "CONFIDENCE", "data_length": 10, "description": "Category Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES COUNT", "name": "Faces Count", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Faces Count", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACECOUNT", "column_name": "COUNT", "data_length": 10, "description": "Faces Count", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "name": "Face Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 106, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME", "name": "Recognized Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME", "data_length": 2000, "description": "Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME CONFIDENCE", "name": "Recognized Name Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME_CONFIDENCE", "data_length": 10, "description": "Name Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE", "name": "Person Age", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE", "data_length": 10, "description": "Person Age", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE CONFIDENCE", "name": "Person Age Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Person Age Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_CONFIDENCE", "data_length": 10, "description": "Person Age Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER", "name": "Gender", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Gender", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.GENDER", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER", "data_length": 40, "description": "Gender", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER CONFIDENCE", "name": "Gender Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Gender Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER_CONFIDENCE", "data_length": 10, "description": "Gender Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.FACE COORDS", "name": "Face Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "FACE_COORDS", "data_length": 200, "description": "Face Coordinates like postion, height,width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE GROUP", "name": "Person Age Group", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age Group", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.AGE GROUP", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_GROUP", "data_length": 10, "description": "Person Age Group", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "name": "Safe Content", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 107, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONTENT TYPE", "name": "Safe Content Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Safe Content Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENTS", "data_length": 20, "description": "Safe Content Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONFIDENCE", "name": "Content Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Content Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENT_CONFIDENCE", "data_length": 10, "description": "Safe Content Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "name": "Colors", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 108, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.NAME", "name": "Color", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Color", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "NAME", "data_length": 25, "description": "COLOR", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.PROPORTION", "name": "Color Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Color Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "PROPORTION", "data_length": 10, "description": "Proportion", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.FOREGROUND", "name": "Foreground Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Foreground Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "FOREGROUND", "data_length": 25, "description": "Foreground Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.BACKGROUND", "name": "Background Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Background Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "BACKGROUND", "data_length": 25, "description": "Background Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.ISBW", "name": "Is Black and White", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Is Black and White", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "ISBW", "data_length": 10, "description": "Is Black and White", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "name": "Captions", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 109, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION TEXT", "name": "Caption Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Caption Text", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "TEXT", "data_length": 2000, "description": "Caption Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION CONFIDENCE", "name": "Caption Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Caption Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "CAPTION_CONFIDENCE", "data_length": 10, "description": "Caption Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "name": "Image Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 110, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.IMAGE TYPE", "name": "Analysis Image Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Analysis Image Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_IMAGE_TYPE", "column_name": "TYPE", "data_length": 100, "description": "Image Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "parent_table_name": "Image Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.DATE", "name": "Date: Media Analysis", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-11-07T13:02:14+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date: Media Analysis", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MEDIA_ANALYSIS_DATE", "data_length": 25, "description": "Date Media Analysis was done on the asset.", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR LANGUAGE", "name": "Image Text Language", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Image Text Language", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "LANGUAGE", "data_length": 10, "description": "OCR data language", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR TEXT", "name": "Text on Image", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Text on Image", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "TEXT", "data_length": 4000, "description": "OCR Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "name": "Embedded Brand Info", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 119, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.NAME", "name": "Embedded Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Embedded Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Embedded Brand Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.CONFIDENCE", "name": "Embedded Brand Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Embedded Brand Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Embedded Brand Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.COORDINATES", "name": "Embedded Brand Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Embedded Brand Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "COORDINATES", "data_length": 200, "description": "Embedded Brand Coordinates like position, height, width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "HYBRIS.PRODUCT.INFO", "name": "PIM Item Reference", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200027, "metadata_element_list": [{"id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "name": "Hybris Item Reference", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1206, "metadata_element_list": [{"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ID", "name": "Hybris Item ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ID", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT TAG NAME", "name": "Hybris Assignment Label", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Assignment Label", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_TAG_NAME", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ATTRIBUTE NAME", "name": "Hybris Attribute Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Attribute Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ATTRIBUTE_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT CATALOG NAME", "name": "Hybris Catalog Mnemonic", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Catalog Mnemonic", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_CATALOG_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT PK", "name": "Hybris Item PK", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item PK", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_PK", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.SYSTEM ID", "name": "Hybris System ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris System ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "SYSTEM_ID", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.ASSIGNED", "name": "Assigned", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Assigned", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "ASSIGNED", "column_name": "ASSIGNED", "data_length": 38, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PIM TYPE", "name": "PIM Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "PIM Type", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_PIM_TYPE", "column_name": "PIM_TYPE", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS VIDEO", "name": "Media Analysis Video", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1003, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "name": "Labels", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 113, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.ID", "name": "Label Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Label Id", "values": [{"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 1}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 2}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 3}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 4}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 5}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 6}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 7}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 8}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "ID", "data_length": 40, "description": "Label Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.NAME", "name": "Label Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "dessert"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Label Name", "values": [{"value": {"type": "string", "value": "dessert"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "indoor"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "food"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "pancake"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "tableware"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "table"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "baked goods"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "snack"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "wall"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "NAME", "data_length": 40, "description": "Label Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.APPEARANCES", "name": "Label Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:09\\",\\"endTime\\":\\"0:00:22.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Label Appearances", "values": [{"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:09\\",\\"endTime\\":\\"0:00:22.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:00\\",\\"endTime\\":\\"0:00:12.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:11\\",\\"endTime\\":\\"0:00:20.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:14\\",\\"endTime\\":\\"0:00:22.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:03\\",\\"endTime\\":\\"0:00:09.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:05\\",\\"endTime\\":\\"0:00:10.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:09\\",\\"endTime\\":\\"0:00:14.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:09\\",\\"endTime\\":\\"0:00:14.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:00\\",\\"endTime\\":\\"0:00:00.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "APPEARANCES", "data_length": 0, "description": "Label Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "name": "Sentiments", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 114, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.ID", "name": "Sentiment Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "ID", "data_length": 40, "description": "Sentiment Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.NAME", "name": "Sentiment Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "NAME", "data_length": 40, "description": "Sentiment Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.APPEARANCES", "name": "Sentiment Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "APPEARANCES", "data_length": 0, "description": "Sentiment Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.SEEN.DURATION.RATIO", "name": "Sentiment Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Sentiment Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "name": "Keywords", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 115, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.ID", "name": "Keyword Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "ID", "data_length": 40, "description": "Keyword Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.NAME", "name": "Keyword Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "NAME", "data_length": 40, "description": "Keyword Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.APPEARANCES", "name": "Keyword Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Keyword Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "name": "Faces", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 111, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.ID", "name": "Face Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "ID", "data_length": 40, "description": "Face Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.NAME", "name": "Face Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "NAME", "data_length": 40, "description": "Face Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.TITLE", "name": "Face Title", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Title", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "TITLE", "data_length": 249, "description": "Face Title", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.DESCRIPTION", "name": "Face Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Face Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.APPEARANCES", "name": "Face Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "APPEARANCES", "data_length": 0, "description": "Face Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SPEAKER.FACE.ID", "name": "Video Speaker Object Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Speaker Object Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "THUMBNAIL_OBJECT_ID", "data_length": 40, "description": "Video Speaker Object Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.SEEN.DURATION.RATIO", "name": "Face Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "SEEN_DURATION_RATIO", "data_length": 20, "description": "Face Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "name": "Brands", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 112, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.ID", "name": "Video Brand Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Brand Id", "values": [{"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "ID", "data_length": 40, "description": "Brand Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.NAME", "name": "Video Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Brand Name", "values": [{"value": {"type": "string", "value": "Nutella"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Brand Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.DESCRIPTION", "name": "Video Brand Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella is the brand name of a sweetened hazelnut cocoa spread. Manufactured by the Italian company Ferrero, it was introduced to the market in 1964. Pietro Ferrero, who owned a bakery in Alba, Piedmont, an area known for the production of hazelnuts, sold an initial batch of 300 kilograms (660 lb) of \\"Pasta Gianduja\\" in 1946."}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Brand Description", "values": [{"value": {"type": "string", "value": "Nutella is the brand name of a sweetened hazelnut cocoa spread. Manufactured by the Italian company Ferrero, it was introduced to the market in 1964. Pietro Ferrero, who owned a bakery in Alba, Piedmont, an area known for the production of hazelnuts, sold an initial batch of 300 kilograms (660 lb) of \\"Pasta Gianduja\\" in 1946."}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Brand Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.WIKIURL", "name": "Video Brand Wiki URL", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "http://en.wikipedia.org/wiki/Nutella"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Brand Wiki URL", "values": [{"value": {"type": "string", "value": "http://en.wikipedia.org/wiki/Nutella"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "WIKIURL", "data_length": 200, "description": "Brand Wiki URL", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.APPEARANCES", "name": "Video Brand Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:00\\",\\"endTime\\":\\"0:00:22.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Brand Appearances", "values": [{"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:00\\",\\"endTime\\":\\"0:00:22.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Brand Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.SEEN.DURATION.RATIO", "name": "Video Brand Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "1.0"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Brand Seen Duration Ratio", "values": [{"value": {"type": "string", "value": "1.0"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Brand Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "name": "Speeches", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 116, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.ID", "name": "SpeechText Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "SpeechText Id", "values": [{"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "ID", "data_length": 40, "description": "SpeechText Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXT", "name": "Speech Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "nutella"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Speech Text", "values": [{"value": {"type": "string", "value": "nutella"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXT", "data_length": 1000, "description": "Speech Text", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXTTYPE", "name": "Speech Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "OCR"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Speech Type", "values": [{"value": {"type": "string", "value": "OCR"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXTTYPE", "data_length": 40, "description": "Speech Type", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.START TIME", "name": "Speech Start Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "0:00:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Speech Start Time", "values": [{"value": {"type": "string", "value": "0:00:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "START_TIME", "data_length": 40, "description": "Speech Start Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.END TIME", "name": "Speech End Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "0:00:22.04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Speech End Time", "values": [{"value": {"type": "string", "value": "0:00:22.04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "END_TIME", "data_length": 40, "description": "Speech End Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "name": "Speakers", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 122, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.ID", "name": "Speaker Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "ID", "data_length": 40, "description": "Speaker Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.NAME", "name": "Speaker Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "NAME", "data_length": 100, "description": "Speaker Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.APPEARANCES", "name": "Speaker Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "APPEARANCES", "data_length": 0, "description": "Speaker Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.FIELDGROUP.LOCALASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200057, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1239, "metadata_element_list": [{"id": "FERRERO.FIELD.COUNTRY", "name": "LOCAL COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "LOCAL COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USER", "name": "USER", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "USER", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_USER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.ASSOCIATION", "name": "TYPE OF ASSOCIATION", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "TYPE OF ASSOCIATION", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_ASSOCIATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.VALUE", "name": "VALUE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "VALUE", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_VALUE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}], "has_multilingual_fields": false}, "mime_type": "video/mp4", "path_list": [{"parents": [{"id": "22ffc2d88af095463e48ab79e09886102f039563", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "22ffc2d88af095463e48ab79e09886102f039563", "sequence_number": 0}, {"id": "c6e6896565298d09d364f501aecd10d0998d8437", "name": "NUTELLA XMAS - PL ADAPTATION 2", "container_state": "NORMAL", "original_uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "sequence_number": 0}, {"id": "20c88462ba3557e7aae759665cbe331f693d398a", "name": "02. Campaigns", "container_state": "NORMAL", "original_uoi_id": "20c88462ba3557e7aae759665cbe331f693d398a", "sequence_number": 0}, {"id": "1638869b9b347c39842effc7e5ff965de47e8e65", "name": "01.Standard", "container_state": "NORMAL", "original_uoi_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "sequence_number": 0}, {"id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "name": "01.Poland", "container_state": "NORMAL", "original_uoi_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "sequence_number": 0}, {"id": "341bbf240ea033435cc225cd1add5c009bc067d7", "name": "PL", "container_state": "NORMAL", "original_uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "sequence_number": 0}, {"id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "name": "01. PL - Nutella", "container_state": "NORMAL", "original_uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "sequence_number": 0}, {"id": "5353bb35177d792b073acc634e010df2908fde32", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 5, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "sequence_number": 0}, {"id": "847c0ede25c32edd97546221fe54fb392431848d", "name": "NUTELLA XMAS - PL ADAPTATION 3", "container_state": "NORMAL", "original_uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "sequence_number": 0}, {"id": "20c88462ba3557e7aae759665cbe331f693d398a", "name": "02. Campaigns", "container_state": "NORMAL", "original_uoi_id": "20c88462ba3557e7aae759665cbe331f693d398a", "sequence_number": 0}, {"id": "1638869b9b347c39842effc7e5ff965de47e8e65", "name": "01.Standard", "container_state": "NORMAL", "original_uoi_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "sequence_number": 0}, {"id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "name": "01.Poland", "container_state": "NORMAL", "original_uoi_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "sequence_number": 0}, {"id": "341bbf240ea033435cc225cd1add5c009bc067d7", "name": "PL", "container_state": "NORMAL", "original_uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "sequence_number": 0}, {"id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "name": "01. PL - Nutella", "container_state": "NORMAL", "original_uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "sequence_number": 0}, {"id": "5353bb35177d792b073acc634e010df2908fde32", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "103a6545e38f07f6e989a86c6ee7e10339a71a14", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "103a6545e38f07f6e989a86c6ee7e10339a71a14", "sequence_number": 0}, {"id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "name": "NUTELLA - CHRISTMAS 26 E2E", "container_state": "NORMAL", "original_uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "sequence_number": 0}, {"id": "413c776f4416163b88737d53bb72dfe23bfd2430", "name": "Global", "container_state": "NORMAL", "original_uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "sequence_number": 0}, {"id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "name": "Oliver Read Only", "container_state": "NORMAL", "original_uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "sequence_number": 0}, {"id": "23b155c32d5c6142914b41458234c100812bbec8", "name": "Oliver", "container_state": "NORMAL", "original_uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "sequence_number": 0}, {"id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "name": "Z - Exchange", "container_state": "NORMAL", "original_uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "22ffc2d88af095463e48ab79e09886102f039563", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "22ffc2d88af095463e48ab79e09886102f039563", "sequence_number": 0}, {"id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "name": "Oliver Read Only", "container_state": "NORMAL", "original_uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "sequence_number": 0}, {"id": "23b155c32d5c6142914b41458234c100812bbec8", "name": "Oliver", "container_state": "NORMAL", "original_uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "sequence_number": 0}, {"id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "name": "Z - Exchange", "container_state": "NORMAL", "original_uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "sequence_number": 0}], "complete": true, "sequence_number": 5, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}], "creator_id": "1003", "asset_state": "NORMAL", "checked_out": false, "folder_path": "", "content_size": 7303279, "content_type": "VIDEO", "content_state": "NORMAL", "date_imported": "2025-11-07T13:00:13.49+01:00", "import_job_id": 216243, "streaming_url": "https://ppr.dam.ferrero.com/video/data/repository/original/vol0/224/28a877dd76e64d355af0afbddccd49d37e26bf7e_proxy.mp4", "subscribed_to": false, "collection_ids": [], "latest_version": true, "legacy_model_id": 116, "content_editable": true, "content_sub_type": "WHOLE", "import_user_name": "bizAdmin", "date_last_updated": "2025-11-07T13:03:08.623+01:00", "metadata_model_id": "ECOMMERCE", "original_asset_id": "850c36af1e2ccfe2ae65018a5b56517647103dd0", "rendition_content": {"preview_content": {"id": "68b31bace65c2b0bb908d48b63176e5ed99f04cf", "url": "/otmmapi/v6/renditions/68b31bace65c2b0bb908d48b63176e5ed99f04cf", "name": "Nutella4Global_e2e.mp4", "width": 640, "height": 360, "mime_type": "video/mp4", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "PREVIEW", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\224\\\\28a877dd76e64d355af0afbddccd49d37e26bf7e_proxy.mp4", "content_size": 2007710, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "thumbnail_content": {"id": "3932020d0cca7bdb85feaf8013561645c8b33a37", "url": "/otmmapi/v6/renditions/3932020d0cca7bdb85feaf8013561645c8b33a37", "name": "3932020d0cca7bdb85feaf8013561645c8b33a37.jpg", "width": 500, "height": 282, "mime_type": "image/jpeg", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "THUMBNAIL", "content_path": "data\\\\repository\\\\thumb\\\\vol0\\\\198\\\\3932020d0cca7bdb85feaf8013561645c8b33a37_3932020d0cca7bdb85feaf8013561645c8b33a37.jpg", "content_size": 27868, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "video_rollover_content": {"id": "f641dadb304033d4076331e171c7592c7c249dec", "url": "/otmmapi/v6/renditions/f641dadb304033d4076331e171c7592c7c249dec", "name": "Nutella4Global_e2e.GIF", "width": 500, "height": 282, "mime_type": "image/gif", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "ROLLOVER", "content_path": "data\\\\repository\\\\rollover\\\\vol0\\\\16\\\\f641dadb304033d4076331e171c7592c7c249dec_rollover.gif", "content_size": 6611477, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_content_info": {"master_content": {"id": "7e73e51f06e860a634047ee3b4d93bfa088d5b17", "url": "/otmmapi/v6/renditions/7e73e51f06e860a634047ee3b4d93bfa088d5b17", "name": "Nutella4Global_e2e.mp4", "width": -1, "height": -1, "mime_type": "video/mp4", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\224\\\\Nutella4Global_e2e_7e73e51f06e860a634047ee3b4d93bfa088d5b17.mp4", "content_size": 7303279, "unit_of_size": "BYTES", "content_checksum": "f36d075782a514bcbe9765a633e9f843", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "supporting_content": [{"id": "28a877dd76e64d355af0afbddccd49d37e26bf7e", "url": "/otmmapi/v6/renditions/28a877dd76e64d355af0afbddccd49d37e26bf7e", "name": "Nutella4Global_e2e.mp4", "width": 640, "height": 360, "mime_type": "video/mp4", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "SUPPORTING", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\224\\\\28a877dd76e64d355af0afbddccd49d37e26bf7e_proxy.mp4", "content_size": 2007710, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}]}, "asset_state_user_id": "1003", "master_content_info": {"id": "7e73e51f06e860a634047ee3b4d93bfa088d5b17", "url": "/otmmapi/v6/renditions/7e73e51f06e860a634047ee3b4d93bfa088d5b17", "name": "Nutella4Global_e2e.mp4", "width": -1, "height": -1, "mime_type": "video/mp4", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\224\\\\Nutella4Global_e2e_7e73e51f06e860a634047ee3b4d93bfa088d5b17.mp4", "content_size": 7303279, "unit_of_size": "BYTES", "content_checksum": "f36d075782a514bcbe9765a633e9f843", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "delivery_service_url": "https://ppr.dam.ferrero.com/adaptivemedia/rendition?id=850c36af1e2ccfe2ae65018a5b56517647103dd0", "product_associations": false, "security_policy_list": [{"id": 5467, "name": "Marketing Viewer", "status": "NORMAL", "created_by": "1003", "create_date": "2023-10-06T16:52:07.297+02:00", "description": "Marketing Viewer", "ownership_type": "PUBLIC"}], "thumbnail_content_id": "3932020d0cca7bdb85feaf8013561645c8b33a37", "content_state_user_id": "1003", "content_state_user_name": "OTMM BusinessAdmin", "asset_lock_state_user_id": "1003", "metadata_state_user_name": "OTMM BusinessAdmin", "progressive_download_url": "https://ppr.dam.ferrero.com/video/data/repository/original/vol0/224/28a877dd76e64d355af0afbddccd49d37e26bf7e_proxy.mp4", "access_control_descriptor": {"permissions_map": {"entry": [{"key": "text.securityPolicy.permission.Custom04Permission", "value": true}, {"key": "text.securityPolicy.permission.ContentEditPermission", "value": true}, {"key": "text.securityPolicy.permission.AssetViewPermission", "value": true}, {"key": "text.securityPolicy.permission.ProjectViewPermission", "value": true}, {"key": "text.securityPolicy.permission.MembershipEditPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom03Permission", "value": true}, {"key": "text.securityPolicy.permission.MetaDataEditPermission", "value": true}, {"key": "text.securityPolicy.permission.EditParentsPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom02Permission", "value": true}, {"key": "text.securityPolicy.permission.ExportPermission", "value": true}, {"key": "text.securityPolicy.permission.SummaryViewPermission", "value": true}, {"key": "text.securityPolicy.permission.PreviewViewPermission", "value": true}, {"key": "text.securityPolicy.permission.SubscribePermission", "value": true}, {"key": "text.securityPolicy.permission.DeleteAssetPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom01Permission", "value": true}]}}, "content_lock_state_user_id": "1003", "asset_state_last_update_date": "2025-11-07T13:03:08.623+01:00", "content_lock_state_user_name": "bizAdmin", "metadata_lock_state_user_name": "bizAdmin", "content_state_last_update_date": "2025-11-07T13:00:14.87+01:00", "inherited_metadata_collections": [{"container_id": "22ffc2d88af095463e48ab79e09886102f039563", "container_name": "00. Master Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "22ffc2d88af095463e48ab79e09886102f039563", "originator_id": "22ffc2d88af095463e48ab79e09886102f039563", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00. Master Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "c6e6896565298d09d364f501aecd10d0998d8437", "container_name": "NUTELLA XMAS - PL ADAPTATION 2", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA XMAS - PL ADAPTATION 2"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000598"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA_XMAS_-_PL__JV_LA_MLT_NUT_0000598"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CHRISTMAS"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local adaptation of global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000576"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "EE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "EE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "LT"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "LV"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2024/2025"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "A5"}, "display_value": "Rework needed from Agency", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "c6e6896565298d09d364f501aecd10d0998d8437", "originator_id": "c6e6896565298d09d364f501aecd10d0998d8437", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.DEPARTMENTNAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "20c88462ba3557e7aae759665cbe331f693d398a", "container_name": "02. Campaigns", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "20c88462ba3557e7aae759665cbe331f693d398a", "originator_id": "20c88462ba3557e7aae759665cbe331f693d398a", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "02. Campaigns"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "container_name": "01.Standard", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "originator_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "01.Standard"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "container_name": "01.Poland", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "originator_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "01.Poland"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "container_name": "PL", "container_type_id": "GLOBALMARKETUNIT", "container_type_name": "L6 - MARKET UNIT", "inherited_metadata_values": [{"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "b94dd71b732e3c1df6ae63216c53d4d4b0e7f002"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E39"}, "display_value": "POLAND", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "13063087b81ea172db42e69ed8e8fa013cd5bfe0"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Local PL Editable Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "bf49ba2a40d0d0dccee4d5de7381659b106dd89a"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Nutella Local PL Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "3c0070e420882e3e18f6097811cb60a67239003b"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "7f3c1933b61e900457ea6e2aab750303882873d4"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "b0c960759e48c0fcdcb650417179a614da95e866"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Local PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "6f603fcc63415e266dc35cf2314d31357a2966bf"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "495fa4f08769a021cfa907dfb7a903fade9bd19a"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "e3b647e172a89e1e7cbdd2964faff1bca8dcf520"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "6870cca056b54cd400a9fbd4fe75513e69cedcdd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "container_name": "01. PL - Nutella", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "5efe2981e6f9afca7ed3fc91a171f02162ef23e3"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E008"}, "display_value": "POLAND", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Local PL Editable Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0de507c8b9d1f5942b6376b6c2a2b3ec1097e42e"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E39"}, "display_value": "POLAND", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "ca70a6d55e4277ecbef2a01a593c614501cbcf74"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "3e9d669ab1047383d0416ba40af75744148c94c8"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0e241fc386dcd91baa31a409e297169fe4a352c2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "2e3e0f2be0e487b540d9b63cb8c0e9ed9c6b1bb6"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "359c98154f230a60acc6b4eb048e129411d7a778"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "e92f9f10c0c29dda8261218c2c72a0baa66472f2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "15dff42c3b196ba3ae5b3c2ea33f00e347e6f654"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0ae044cd9dddf86cd9406c9edc3996b18c430be0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "name": "AMMC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AMMC", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LOCAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "7806fed6127b50c21f6b03e1f7b63f3dedc1e8d1"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "4c8a2d6e178638bfacfeaf3f7f6f1000304693a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "name": "Product Asset Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Asset Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCT_ASSET_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "5353bb35177d792b073acc634e010df2908fde32", "container_name": "EU", "container_type_id": "GEOGRAPHYLOCAL", "container_type_name": "L4 - GEOGRAPHY LOCAL", "inherited_metadata_values": [{"id": "FERRERO.MARKET.FOLDER.GLOBAL", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "4c4d4bf36bf8b1ace55f990e78d6332a9cb20990"}, "metadata_element": {"id": "FERRERO.MARKET.FOLDER.GLOBAL", "name": "Global/Local (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "LOCAL"}, "display_value": "Local", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local (Marketing)", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "GLOBALLOCAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_AREA", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "3dc200c993ab8263952dc6da1498026f615f45dd"}, "metadata_element": {"id": "MARKETING_AREA", "name": "AREA", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E010"}, "display_value": "EUROPE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "AREA", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "AREA", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "AREA", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "dc7749c3e113ec9e0b9e9a3840ea55673ca5e49f"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "f2d658a3829c2ea158ae70a4b4e7928bcf88f8e2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "972d0258a82de85672bd84d8af68cdb67ad3d3ca"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "1212505ad3fe4c9d7458568f3d95aeb4c4e5c37e"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "9d1dfdef55ff7a3eb03552988ddf729c7a0f5107"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "54f006eeb366121a29ee98da33d437615dcd34e0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "1fd8802010e30d44cebb2f3eb090b12ac550f97d"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "be0dc9a87262ee7fd165237b531ba3b7aa93a260"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "2f99f0f0f9e43fb34df9222c8b73a86fb78e473e"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "container_name": "Nutella", "container_type_id": "GLOBALBRAND", "container_type_name": "L3 - BRAND", "inherited_metadata_values": [{"id": "FERRERO.TABULAR.NEW.BRAND", "tabular": true, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "9bb1c183135f5240f09132aef59c4ea48c762381"}, "metadata_element": {"id": "FERRERO.TABULAR.NEW.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF30"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND (Marketing)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF30"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "BRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TABULAR_BRAND", "column_name": "BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.NEW.BRAND", "parent_table_name": "BRAND (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "tabular": true, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "a37b13c02cba799378211e17b73234a0d836f9b6"}, "metadata_element": {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "JV"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND(HARMONIZED)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "JV"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.HARMONIZEDBRAND", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_HARMONIZEDBRAND", "column_name": "HARMONIZEDBRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.HARMONIZEDBRAND", "parent_table_name": "BRAND(HARMONIZED)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "AGENCY.COLLABORATION", "tabular": false, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "183d6e0957a9940f9b18ef44f46d957802b63397"}, "metadata_element": {"id": "AGENCY.COLLABORATION", "name": "Agency collaboration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency collaboration", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "AGENCY_COLLABORATION", "column_name": "AGENCY_COLLABORATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "AGENCY.SHARING", "tabular": false, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "d0e2b725ddfdc452cc3ba750bbe8ec059c6b01ba"}, "metadata_element": {"id": "AGENCY.SHARING", "name": "Agency sharing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency sharing", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "AGENCY_SHARING", "column_name": "AGENCY_SHARING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "CONTENT.SCALING.AGENCYNAME", "tabular": false, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "f9dfa695cc5ef8cd3fafada4e44cfdaa1522d58a"}, "metadata_element": {"id": "CONTENT.SCALING.AGENCYNAME", "name": "Content Scaling agency name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Scaling agency name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENTSCALING_AGENCYNAME", "column_name": "CONTENTSCALING_AGENCYNAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "container_name": "01. Nutella Core", "container_type_id": "GLOBALSUBCATEGORY", "container_type_name": "L2 - SUBCATEGORY", "inherited_metadata_values": [{"id": "MARKETING_SUBCATEGORY", "tabular": false, "value_id": {"uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "originator_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "inherited_field_id": "3000ad591e09b5c75f85fc2ccbb9ebeb31b3ab78"}, "metadata_element": {"id": "MARKETING_SUBCATEGORY", "name": "SUBCATEGORY", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Mart-Nutella-Core"}, "display_value": "Nutella Core", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "SUBCATEGORY", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "SUBCATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "SUBCATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "tabular": true, "value_id": {"uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "originator_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "inherited_field_id": "2c751ce760d88c0e271925ea5149348106944bfa"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Subcategory Owner", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_SUBCATEGORY_OWNER_TM", "column_name": "SUBCATEGORY_OWNER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "parent_table_name": "Subcategory Owner", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "container_name": "Nutella", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "originator_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E04"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "originator_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final Approver BPS ", "values": [{"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "container_name": "00. Master Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "originator_id": "3815d0d30856655b09649d72916cf7fa8a1f5821", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00. Master Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "847c0ede25c32edd97546221fe54fb392431848d", "container_name": "NUTELLA XMAS - PL ADAPTATION 3", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA XMAS - PL ADAPTATION 3"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000599"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA_XMAS_-_PL_A_JV_LA_PL_NUT_0000599"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CHRISTMAS"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local adaptation of global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000576"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2021/2022"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "A1"}, "display_value": "Local Campaign ready for localization", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "847c0ede25c32edd97546221fe54fb392431848d", "originator_id": "847c0ede25c32edd97546221fe54fb392431848d", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.DEPARTMENTNAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "103a6545e38f07f6e989a86c6ee7e10339a71a14", "container_name": "05. Final Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "103a6545e38f07f6e989a86c6ee7e10339a71a14", "originator_id": "103a6545e38f07f6e989a86c6ee7e10339a71a14", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "05. Final Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "container_name": "NUTELLA - CHRISTMAS 26 E2E", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA - CHRISTMAS 26 E2E"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000576"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA_-_CHRISTMA_JV_GL_MLT_NUT_0000576"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "BE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "BE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "BG"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "EE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "LT"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "LU"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "LV"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "MD"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "NL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "RO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2025/2026"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "B2"}, "display_value": "Master campaign received from Agency", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "originator_id": "8bc4980b28869aeeb4b56b6a07113a2256f5e9a0", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.DEPARTMENTNAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "container_name": "Global", "container_type_id": "GEOGRAPHYGLOBAL", "container_type_name": "L4 - GEOGRAPHY GLOBAL", "inherited_metadata_values": [{"id": "FERRERO.MARKET.FOLDER.GLOBAL", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "963db123044a8d3ff5d8f4aac56d35df77a7656c"}, "metadata_element": {"id": "FERRERO.MARKET.FOLDER.GLOBAL", "name": "Global/Local (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "GLOBAL"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local (Marketing)", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "GLOBALLOCAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_AREA", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "3a37ace6a53a93799e0e18773ba6c7e70305cc78"}, "metadata_element": {"id": "MARKETING_AREA", "name": "AREA", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AREA", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "AREA", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "AREA", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "9f64f884b41d2a8445f4d9cd60714e91024e8b13"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Global Editable Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "8847a6dfbebcf323a8170649b390af1a375c08b8"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Nutella Global Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "758e614412f11ecb58446966d328974daf253446"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "53df9e81ae46cf6bd2440643426224b1fb904aeb"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "name": "Published Security Policy - Restricted Visibility", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Global Published Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Security Policy - Restricted Visibility", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_VISIBILITY_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "6b410cc3e966037a3e534da53137d32856cd6bdb"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "b5f185da6208925fe296e074dbdfdd74678ad076"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "b9e4bba5fa277862093047710c3fccb44a553f91"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "a70b94dccf12d05fbcf6a1881e4726759d8714a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "134e6810dec03aed0a70f68bf16cdd3a390f99de"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "2c412cc87805c4f03622e671cd7cdd65402b5598"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "0f4d4a35b08b4d2aac7ce7cc18999a8e5f523edf"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.GLOBAL APPROVER", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "43af18c983afd26a477317ac0b608495d9e0b3df"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.GLOBAL APPROVER", "name": "Global approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "GLOBAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "00dacbe20687d3c5d0be9b4fc2997c572e3c36bf"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "0fbcf70c95f5d28645e7a6187f7c429d62e60380"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Global comm"}, "display_value": "Global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Global comm"}, "display_value": "Global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "container_name": "Oliver Read Only", "container_type_id": "L3 - Agency Structure", "container_type_name": "L3 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "55530f721f18c847e35d7c828edf53461b5014b0"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "330bb6f68316aab5c45f9fe34e047cce573c67cc"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "name": "Agency Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "AGENCY_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "e30e90d694f9935d4c15c4c78891beed8853a272"}, "metadata_element": {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "name": "Published Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "PUBLISHED_ASSET_SP_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "23b155c32d5c6142914b41458234c100812bbec8", "container_name": "Oliver", "container_type_id": "L2 - Agency Structure", "container_type_name": "L2 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.AGENCY", "tabular": false, "value_id": {"uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "originator_id": "23b155c32d5c6142914b41458234c100812bbec8", "inherited_field_id": "48fcbc397986aca5bb8722a95197dd0a46f19b4e"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_AGENCY", "column_name": "AGENCY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "container_name": "Z - Exchange", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "YY"}, "display_value": "AGENCIES", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Final Approver BPS ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}], "asset_lock_state_last_update_date": "2025-11-07T13:03:36.743+01:00", "content_lock_state_last_update_date": "2025-11-07T13:00:15.03+01:00"} \N \N active f \N \N 2025-11-21 03:23:42.104958 2025-11-21 03:23:42.104958 2025-11-21 03:23:42.104958 9 iFLQFw 63b10b8e46df50e279c15fc2e12ae39e3585b41a nutella pbased_beauty .jpg \N image/jpeg \N \N \N \N \N \N \N \N \N \N \N \N \N C000000138 f59d4d433cb55db39058836dd4c145062b8730a3 C000000566 89055343da08010910ebc7034cc2fd868d14a944 Box File ID: 2052714302232\nBox URL: https://app.box.com/file/2052714302232\nDAM Asset ID: 63b10b8e46df50e279c15fc2e12ae39e3585b41a {"name": "nutella pbased_beauty.jpg", "links": {"links": [], "source_id": "63b10b8e46df50e279c15fc2e12ae39e3585b41a"}, "locked": false, "deleted": false, "expired": false, "version": 1, "asset_id": "63b10b8e46df50e279c15fc2e12ae39e3585b41a", "metadata": {"id": "ECOMMERCE", "name": "Marketing Asset", "type": "com.artesia.metadata.MetadataModel", "legacy_id": 116, "metadata_element_list": [{"id": "FERRERO.CATEGORY.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200054, "metadata_element_list": [{"id": "FERRERO.FIELD.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Status", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.CONTENT_STATUS", "edit_type": "COMBO_NOTNULL", "facetable": false, "searchable": true, "table_name": "FERRERO_CONTENT_STATUS_MD", "column_name": "CONTENT_STATUS", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9215, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRER.CATEGORY.ASSET_INFO", "name": "Asset Info", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200022, "metadata_element_list": [{"id": "FERRERO.FIELD.MKTG.ASSET TYPE", "name": "Asset Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "aplus"}, "display_value": "E-COMM: A+", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.ASSETTYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.FISCAL YEAR", "name": "Release Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2025/2026"}, "display_value": "2025/2026", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Release Fiscal Year", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_DOMAIN_FISCAL_YEAR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "FISCAL__YEAR", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "name": "Main Languages", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1210, "metadata_element_list": [{"id": "MAIN_LANGUAGES", "name": "MAIN LANGUAGES", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "MAIN LANGUAGES", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MAIN LAGUAGES_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MAIN_LANGUAGE_TABLE", "column_name": "MAIN_LANGUAGE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "parent_table_name": "Main Languages", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.ASSET DESCRIPTION", "name": "Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Description", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "DESCR", "data_length": 249, "description": "Descriptive information", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.FLAVOUR", "name": "Flavour", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Flavour", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.FLAVOUR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FLAVOUR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.SIZE", "name": "Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Size", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.SIZE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SIZE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1241, "metadata_element_list": [{"id": "FERRERO.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Compliance", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ASSETCOMPLIANCE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_COMPLIANCE", "column_name": "ASSET_COMPLIANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "parent_table_name": "Asset Compliance", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.TAG DETAILS", "name": "Tag Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 118, "metadata_element_list": [{"id": "ARTESIA.FIELD.TAG", "name": "Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "food", "field_value": {"type": "string", "value": "food"}, "display_value": "food", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Tag", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "food", "field_value": {"type": "string", "value": "food"}, "display_value": "food", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "indoor", "field_value": {"type": "string", "value": "indoor"}, "display_value": "indoor", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "kitchen appliance", "field_value": {"type": "string", "value": "kitchen appliance"}, "display_value": "kitchen appliance", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "text", "field_value": {"type": "string", "value": "text"}, "display_value": "text", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "snack", "field_value": {"type": "string", "value": "snack"}, "display_value": "snack", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "bottle", "field_value": {"type": "string", "value": "bottle"}, "display_value": "bottle", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "fast food", "field_value": {"type": "string", "value": "fast food"}, "display_value": "fast food", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "kitchen", "field_value": {"type": "string", "value": "kitchen"}, "display_value": "kitchen", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.TAGS", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "OTMM_TAGS", "column_name": "TAG", "data_length": 80, "description": "Tag", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG CONFIDENCE", "name": "Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 96.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Confidence", "values": [{"value": {"type": "decimal", "value": 96.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 93.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 64.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 64.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 62.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 59.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 57.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 51.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Confidence", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG TYPE", "name": "Tag Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Tag Type", "values": [{"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "TAG_TYPE", "data_length": 10, "description": "Tag Type", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED BY", "name": "Associated By", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Associated By", "values": [{"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_BY", "data_length": 10, "description": "Associated By", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED DATE", "name": "Associated Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-11-11T14:39:08.933+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Associated Date", "values": [{"value": {"type": "dateTime", "value": "2025-11-11T14:39:08.933+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-11-11T14:39:08.933+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-11-11T14:39:08.933+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-11-11T14:39:08.933+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-11-11T14:39:08.933+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-11-11T14:39:08.933+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-11-11T14:39:08.937+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2025-11-11T14:39:08.937+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_DATE", "data_length": 10, "description": "Associated Date", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.STATE", "name": "Global/Local", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "GLOBAL"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO_NOTNULL", "facetable": true, "searchable": true, "table_name": "FERRERO_IC_ASSET_DETAILS", "column_name": "ASSET_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.ASPECT RATIO", "name": "Aspect Ratio (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio (Marketing)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASPECT_RATIO", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASPECT_RATIO", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "name": "Tag (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1222, "metadata_element_list": [{"id": "MARKETING_TAG", "name": "Marketing Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Marketing Tag", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.DOMAIN.TAG", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TAG_MARKET", "column_name": "TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "parent_table_name": "Tag (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.TAGS", "name": "Auto-Generated Tags", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Auto-Generated Tags", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "AUTO_GENERATED_TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CERTIFIER", "name": "Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approver", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.MARKETING.FIELD.APPROVAL DATE", "name": "Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.LEGAL APPROVAL DATE", "name": "Legal Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CERTIFIER", "name": "IA&CC Certifier", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Certifier", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CC APPROVAL DATE", "name": "IA&CC Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "name": "Extended Approval", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1230, "metadata_element_list": [{"id": "FERRERO.FIELD.EXTENDED.APPROVAL", "name": "Extended Approval required by:", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended Approval required by:", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COMMENTS", "name": "Comment", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comment", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "COMMENTS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.DATE", "name": "Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USERS", "name": "User ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "User ID", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "USERS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXTENDED.JOBID", "name": "Extended JobID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended JobID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.MIGRATION.INDEX", "name": "Migration Index", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Migration Index", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MIGRATION.INDEX", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MIGRATION_INDEX", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "FERRERO_MARKET_MARKETING_CREATOR", "name": "Marketing Creator", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Marketing Creator", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.CREATOR", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MARKETING_CREATOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "ARTESIA.FIELD.IS LATEST VERSION", "name": "Is Latest Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Y"}, "display_value": "Yes", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Is Latest Version", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.YES_NO", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "IS_LATEST_VERSION", "data_length": 1, "description": "Is this the latest version? (Y/N)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET VERSION", "name": "Asset Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 1}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Version", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "INTEGER", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "VERSION", "data_length": 12, "description": "Version number of asset", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET_ID", "name": "Asset ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "63b10b8e46df50e279c15fc2e12ae39e3585b41a"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset ID", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "LOGICAL_UOI_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.ECOMMERCE STATUS", "name": "Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "PUBLISHED"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Status", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "ASSET_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CREATOR", "name": "Uploaded by", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Uploaded by", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_USER_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.FIELD.CREATION DATE", "name": "Upload Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-11-11T14:38:55.16+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Upload Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_DT", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.ASSET NAME", "name": "Asset Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "nutella pbased_beauty.jpg"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Name", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "description": "Original name of master object", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.CONTENT TYPE", "name": "Content Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "BITMAP"}, "display_value": "Image", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Type", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.CONTENT_TYPES", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "CONTENT_TYPE", "data_length": 8, "description": "Content Type", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.MIME TYPE", "name": "File Extension", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "image/jpeg"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Extension", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_MIME_TYPE", "data_length": 80, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.FILE.SIZE", "name": "File Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "long", "value": 6538}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Size", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "LONG", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_SIZE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP RESOLUTION", "name": "Bitmap Resolution", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 72}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Resolution", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_RESOLUTION", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP WIDTH", "name": "Bitmap Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 300}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Width", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_WIDTH", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP HEIGHT", "name": "Bitmap Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 168}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Height", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_HEIGHT", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.VIDEO.BIT_RATE", "name": "Bitrate", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitrate", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "BIT_RATE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.EMBEDDED.FIELD.DURATION", "name": "Duration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Duration", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "DURATION_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.ASPECT RATIO", "name": "Aspect Ratio", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "ASPECT_RATIO", "data_length": 30, "displayable": false, "instructions": "ASPECT_RATIO", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME HEIGHT", "name": "Frame Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Height", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_HEIGHT", "data_length": 12, "displayable": true, "instructions": "FRAME_HEIGHT", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME WIDTH", "name": "Frame Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Width", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_WIDTH", "data_length": 12, "displayable": true, "instructions": "FRAME_WIDTH", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.ASPECT.RATIO.POC", "name": "Aspect Ratio(POC)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "16:9"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio(POC)", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASPECT_RATIO_TABLE", "column_name": "ASPECT_RATIO", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "PRODUCT.DETAILS", "name": "Product Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200029, "metadata_element_list": [{"id": "FERRERO.TABLE.EANCODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1208, "metadata_element_list": [{"id": "EAN_CODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "EAN CODE/ 77 CODE", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "EAN.CODE", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "EAN_CODE", "column_name": "EAN_CODE_DESCRIPTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "COUNTRY", "name": "COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "EAN_CODE", "column_name": "COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKETING.ADVANCE.PRODUCT.LINK", "name": "Asset-to-product relation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset-to-product relation", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_MARKETING_ADVANCE_PRODUCT_LINK", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ADVANCE_PRODUCT_LINK", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 10182, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.SUB BRAND", "name": "Sub-Brands", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Sub-Brands", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.SUBBRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "SUB_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT WEIGHT", "name": "Product Weight", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Weight", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_WEIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.CONSUMER UNIT PACKAGING", "name": "Consumer Unit Packaging", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Consumer Unit Packaging", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PACK", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "CONSUMER_UNIT_PACKAGING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.4 DIGIT CODE", "name": "4 Digit Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "4 Digit Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "DIGITCODE", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERREO.ECOM.RETAILER_SPECIFIC_FIELD", "name": "Retailer Specific", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Retailer Specific", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "RETAILER_SPECIFIC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "cascading_group_id": "FERRERO.RETAILER.SPECIFIC", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY START PERIOD", "name": "Asset validity start period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity start period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_STARTING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY END PERIOD", "name": "Asset validity end period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity end period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_ENDING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.ASSET.NAMING.CONVENTION", "name": "Does asset need GS1 naming convention", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Does asset need GS1 naming convention", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASSETNAMINGCONVENTION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_NAMING_CONVENTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9515, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT VIEW", "name": "Product View", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product View", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT VIEW", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_VIEW", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT ANGLE", "name": "Product Angle", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Angle", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT.ANGLE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_ANGLE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT STATE", "name": "Product State", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product State", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT STATE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PROMOTION ID", "name": "Promo ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Promo ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROMO_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.BUSINESS.ASSET TYPE", "name": "Asset Type (eDAM)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Type (eDAM)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "OTMM.DOMAIN.OTMM_ASSETTYPE_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_BUSINESS_INFO", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7244, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200048, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.AGENCY NAME", "name": "Agency Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Agency Name", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.AGENCY_NAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AGENCY_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7336, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.CREATIX", "name": "CreativeX", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200059, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.CREATIVEX", "name": "Confidence", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1245, "metadata_element_list": [{"id": "FERRERO.TAB.FIELD.CREATIVEX", "name": "Platform > Rating (%)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Platform > Rating (%)", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_CREATIVEX", "column_name": "CREATIVEX_NEW", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CREATIVEX", "parent_table_name": "Confidence", "cascading_group_id": "FERRERO.CREATIVEX.CHAR", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.CREATIVEX LINK", "name": "CreativeX Hyperlink", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "CreativeX Hyperlink", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_CREATIVEX", "column_name": "CREATIVE_LINK", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.IP_RIGHTS", "name": "IP Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200046, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.IPRIGHT", "name": "IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "IP Rights", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.IPRIGHTS", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IP_RIGHTS", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.BUYOUT", "name": "Touchpoint Scope", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Touchpoint Scope", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.TOTAL_BUYOUT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TOTAL_BUYOUT", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.FERRERO PROPERTY", "name": "Ferrero Property", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Ferrero Property", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.FERRERO_PROPERTY", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FERRERO_PROPERTY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200035, "metadata_element_list": [{"id": "FERRERO.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1209, "metadata_element_list": [{"id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "name": "IP Coverage, Area, Region & Market Unit", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Coverage, Area, Region & Market Unit", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "IPCOVERAGE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "cascading_group_id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHT TYPE", "name": "Copyright Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHT_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.MEDIATYPE", "name": "Media Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Media Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MEDIA_TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "MEDIA_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE FROM", "name": "Expiration of Usage - From", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - From", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_FROM", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE TO", "name": "Expiration of Usage - To", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - To", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_TO", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO._DURATION", "name": "IP Duration", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Duration", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "ECOM_DURATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHTTYPE DETAILS", "name": "Copyright Type Details", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type Details", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHTTYPE_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 6, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.MARKET.VID_STAT_RIGHT", "name": "Video & Static Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200047, "metadata_element_list": [{"id": "FERRERO.MARKET.VID_N_STAT", "name": "Video and Static Right", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Video and Static Right", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VID_AND_STAT_RIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.VID_STAT_TYPE", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1221, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.TYPE_VID", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Video & Static Right", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TYPE_VID_STAT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_MARKET_TYPE_VID_STAT", "column_name": "TYPE_OF_VIDEO_STATIC_RIGHT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.VID_STAT_TYPE", "parent_table_name": "Type of Video & Static Right", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKET.PROD_COMPANY", "name": "Production House", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Production House", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.PRODUCT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200050, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.LICENSIN", "name": "Licensing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Licensing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSING", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "cascading_group_id": "FERRERO.MARKET.CG.LICENSE", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.SPOT_DETAILS", "name": "Spot Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200049, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.SPOT_VERSION", "name": "Spot Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Version", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_VERSION", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_VERSION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.SPOT_TYPE", "name": "Spot Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_TYPE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.DIRECTOR_NAME", "name": "Director Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Director Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "DIRECTOR_NAME", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VIDEO_POST_PROD_COMPANY", "name": "Video Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VID_POST_PROD_CONTACT", "name": "Video Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_COMPANY", "name": "Audio Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_CONTACT", "name": "Audio Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.BROADCASTER.CODE", "name": "Broadcaster Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Broadcaster Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BROADCASTER_CODE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.TECHNICAL_VALIDATION", "name": "Technical Validation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Technical Validation", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TECHNICAL_VALIDATION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS", "name": "Media Analysis", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1002, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "name": "Categories", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 105, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY NAME", "name": "Category Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "abstract_"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Category Name", "values": [{"value": {"type": "string", "value": "abstract_"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "others_"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "NAME", "data_length": 100, "description": "Category Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY CONFIDENCE", "name": "Category Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 0.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Category Confidence", "values": [{"value": {"type": "decimal", "value": 0.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 0.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "CONFIDENCE", "data_length": 10, "description": "Category Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES COUNT", "name": "Faces Count", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Faces Count", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACECOUNT", "column_name": "COUNT", "data_length": 10, "description": "Faces Count", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "name": "Face Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 106, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME", "name": "Recognized Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME", "data_length": 2000, "description": "Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME CONFIDENCE", "name": "Recognized Name Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME_CONFIDENCE", "data_length": 10, "description": "Name Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE", "name": "Person Age", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE", "data_length": 10, "description": "Person Age", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE CONFIDENCE", "name": "Person Age Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Person Age Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_CONFIDENCE", "data_length": 10, "description": "Person Age Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER", "name": "Gender", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Gender", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.GENDER", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER", "data_length": 40, "description": "Gender", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER CONFIDENCE", "name": "Gender Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Gender Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER_CONFIDENCE", "data_length": 10, "description": "Gender Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.FACE COORDS", "name": "Face Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "FACE_COORDS", "data_length": 200, "description": "Face Coordinates like postion, height,width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE GROUP", "name": "Person Age Group", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age Group", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.AGE GROUP", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_GROUP", "data_length": 10, "description": "Person Age Group", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "name": "Safe Content", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 107, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONTENT TYPE", "name": "Safe Content Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Safe Content Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENTS", "data_length": 20, "description": "Safe Content Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONFIDENCE", "name": "Content Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Content Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENT_CONFIDENCE", "data_length": 10, "description": "Safe Content Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "name": "Colors", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 108, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.NAME", "name": "Color", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Grey"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Color", "values": [{"value": {"type": "string", "value": "Grey"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "White"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "NAME", "data_length": 25, "description": "COLOR", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.PROPORTION", "name": "Color Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Color Confidence", "values": [{"is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "PROPORTION", "data_length": 10, "description": "Proportion", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.FOREGROUND", "name": "Foreground Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Grey"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Foreground Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "FOREGROUND", "data_length": 25, "description": "Foreground Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.BACKGROUND", "name": "Background Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "White"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Background Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "BACKGROUND", "data_length": 25, "description": "Background Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.ISBW", "name": "Is Black and White", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "false"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Is Black and White", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "ISBW", "data_length": 10, "description": "Is Black and White", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "name": "Captions", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 109, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION TEXT", "name": "Caption Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "food on a table"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Caption Text", "values": [{"value": {"type": "string", "value": "food on a table"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "TEXT", "data_length": 2000, "description": "Caption Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION CONFIDENCE", "name": "Caption Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 49.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Caption Confidence", "values": [{"value": {"type": "decimal", "value": 49.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "CAPTION_CONFIDENCE", "data_length": 10, "description": "Caption Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "name": "Image Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 110, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.IMAGE TYPE", "name": "Analysis Image Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Analysis Image Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_IMAGE_TYPE", "column_name": "TYPE", "data_length": 100, "description": "Image Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "parent_table_name": "Image Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.DATE", "name": "Date: Media Analysis", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2025-11-11T14:39:09+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date: Media Analysis", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MEDIA_ANALYSIS_DATE", "data_length": 25, "description": "Date Media Analysis was done on the asset.", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR LANGUAGE", "name": "Image Text Language", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "unk"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Image Text Language", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "LANGUAGE", "data_length": 10, "description": "OCR data language", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR TEXT", "name": "Text on Image", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Text on Image", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "TEXT", "data_length": 4000, "description": "OCR Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "name": "Embedded Brand Info", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 119, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.NAME", "name": "Embedded Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Embedded Brand Name", "values": [{"value": {"type": "string", "value": "Nutella"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Embedded Brand Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.CONFIDENCE", "name": "Embedded Brand Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 82.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Embedded Brand Confidence", "values": [{"value": {"type": "decimal", "value": 82.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Embedded Brand Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.COORDINATES", "name": "Embedded Brand Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "\\"top\\":0.6607142857142857,\\"left\\":0.41333333333333333,\\"width\\":0.18333333333333332,\\"height\\":0.09523809523809523"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Embedded Brand Coordinates", "values": [{"value": {"type": "string", "value": "\\"top\\":0.6607142857142857,\\"left\\":0.41333333333333333,\\"width\\":0.18333333333333332,\\"height\\":0.09523809523809523"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "COORDINATES", "data_length": 200, "description": "Embedded Brand Coordinates like position, height, width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "HYBRIS.PRODUCT.INFO", "name": "PIM Item Reference", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200027, "metadata_element_list": [{"id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "name": "Hybris Item Reference", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1206, "metadata_element_list": [{"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ID", "name": "Hybris Item ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ID", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT TAG NAME", "name": "Hybris Assignment Label", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Assignment Label", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_TAG_NAME", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ATTRIBUTE NAME", "name": "Hybris Attribute Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Attribute Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ATTRIBUTE_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT CATALOG NAME", "name": "Hybris Catalog Mnemonic", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Catalog Mnemonic", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_CATALOG_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT PK", "name": "Hybris Item PK", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item PK", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_PK", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.SYSTEM ID", "name": "Hybris System ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris System ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "SYSTEM_ID", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.ASSIGNED", "name": "Assigned", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Assigned", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "ASSIGNED", "column_name": "ASSIGNED", "data_length": 38, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PIM TYPE", "name": "PIM Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "PIM Type", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_PIM_TYPE", "column_name": "PIM_TYPE", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS VIDEO", "name": "Media Analysis Video", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1003, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "name": "Labels", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 113, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.ID", "name": "Label Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "ID", "data_length": 40, "description": "Label Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.NAME", "name": "Label Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "NAME", "data_length": 40, "description": "Label Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.APPEARANCES", "name": "Label Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "APPEARANCES", "data_length": 0, "description": "Label Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "name": "Sentiments", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 114, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.ID", "name": "Sentiment Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "ID", "data_length": 40, "description": "Sentiment Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.NAME", "name": "Sentiment Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "NAME", "data_length": 40, "description": "Sentiment Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.APPEARANCES", "name": "Sentiment Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "APPEARANCES", "data_length": 0, "description": "Sentiment Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.SEEN.DURATION.RATIO", "name": "Sentiment Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Sentiment Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "name": "Keywords", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 115, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.ID", "name": "Keyword Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "ID", "data_length": 40, "description": "Keyword Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.NAME", "name": "Keyword Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "NAME", "data_length": 40, "description": "Keyword Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.APPEARANCES", "name": "Keyword Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Keyword Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "name": "Faces", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 111, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.ID", "name": "Face Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "ID", "data_length": 40, "description": "Face Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.NAME", "name": "Face Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "NAME", "data_length": 40, "description": "Face Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.TITLE", "name": "Face Title", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Title", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "TITLE", "data_length": 249, "description": "Face Title", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.DESCRIPTION", "name": "Face Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Face Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.APPEARANCES", "name": "Face Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "APPEARANCES", "data_length": 0, "description": "Face Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SPEAKER.FACE.ID", "name": "Video Speaker Object Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Speaker Object Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "THUMBNAIL_OBJECT_ID", "data_length": 40, "description": "Video Speaker Object Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.SEEN.DURATION.RATIO", "name": "Face Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "SEEN_DURATION_RATIO", "data_length": 20, "description": "Face Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "name": "Brands", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 112, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.ID", "name": "Video Brand Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "ID", "data_length": 40, "description": "Brand Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.NAME", "name": "Video Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Brand Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.DESCRIPTION", "name": "Video Brand Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Brand Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.WIKIURL", "name": "Video Brand Wiki URL", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Wiki URL", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "WIKIURL", "data_length": 200, "description": "Brand Wiki URL", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.APPEARANCES", "name": "Video Brand Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Brand Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.SEEN.DURATION.RATIO", "name": "Video Brand Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Brand Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "name": "Speeches", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 116, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.ID", "name": "SpeechText Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "SpeechText Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "ID", "data_length": 40, "description": "SpeechText Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXT", "name": "Speech Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Text", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXT", "data_length": 1000, "description": "Speech Text", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXTTYPE", "name": "Speech Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXTTYPE", "data_length": 40, "description": "Speech Type", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.START TIME", "name": "Speech Start Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Start Time", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "START_TIME", "data_length": 40, "description": "Speech Start Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.END TIME", "name": "Speech End Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech End Time", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "END_TIME", "data_length": 40, "description": "Speech End Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "name": "Speakers", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 122, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.ID", "name": "Speaker Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "ID", "data_length": 40, "description": "Speaker Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.NAME", "name": "Speaker Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "NAME", "data_length": 100, "description": "Speaker Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.APPEARANCES", "name": "Speaker Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "APPEARANCES", "data_length": 0, "description": "Speaker Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.FIELDGROUP.LOCALASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200057, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1239, "metadata_element_list": [{"id": "FERRERO.FIELD.COUNTRY", "name": "LOCAL COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "LOCAL COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USER", "name": "USER", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "USER", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_USER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.ASSOCIATION", "name": "TYPE OF ASSOCIATION", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "TYPE OF ASSOCIATION", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_ASSOCIATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.VALUE", "name": "VALUE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "VALUE", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_VALUE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}], "has_multilingual_fields": false}, "mime_type": "image/jpeg", "path_list": [{"parents": [{"id": "46244570083694cb1a7a0deaad7abc87800c39d1", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "46244570083694cb1a7a0deaad7abc87800c39d1", "sequence_number": 0}, {"id": "5f47100767fd6517861b6ee337ea83697edfa66a", "name": "CONTENT SCALING 12345", "container_state": "NORMAL", "original_uoi_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "sequence_number": 0}, {"id": "7a2be540205cbf69067d7f45d6fcf2ccdb09ea50", "name": "02.Campaigns", "container_state": "NORMAL", "original_uoi_id": "7a2be540205cbf69067d7f45d6fcf2ccdb09ea50", "sequence_number": 0}, {"id": "a0c1ace9b1a779f115d94d044718d9c255c5f154", "name": "01.Standard", "container_state": "NORMAL", "original_uoi_id": "a0c1ace9b1a779f115d94d044718d9c255c5f154", "sequence_number": 0}, {"id": "e0683b3c0bd99442ce0240ff4bd15eb34c8e1be0", "name": "01.Romania", "container_state": "NORMAL", "original_uoi_id": "e0683b3c0bd99442ce0240ff4bd15eb34c8e1be0", "sequence_number": 0}, {"id": "154c946e28d7ba2bb35fe8ce1360eeda3baba4b6", "name": "RO", "container_state": "NORMAL", "original_uoi_id": "154c946e28d7ba2bb35fe8ce1360eeda3baba4b6", "sequence_number": 0}, {"id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "name": "01. MC - Nutella", "container_state": "NORMAL", "original_uoi_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "sequence_number": 0}, {"id": "5353bb35177d792b073acc634e010df2908fde32", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "eb8dd489a64518ea4a6b62a7fbb6f28940f968ae", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "eb8dd489a64518ea4a6b62a7fbb6f28940f968ae", "sequence_number": 0}, {"id": "f59d4d433cb55db39058836dd4c145062b8730a3", "name": "CONTENT SCALING XX", "container_state": "NORMAL", "original_uoi_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "sequence_number": 0}, {"id": "20c88462ba3557e7aae759665cbe331f693d398a", "name": "02. Campaigns", "container_state": "NORMAL", "original_uoi_id": "20c88462ba3557e7aae759665cbe331f693d398a", "sequence_number": 0}, {"id": "1638869b9b347c39842effc7e5ff965de47e8e65", "name": "01.Standard", "container_state": "NORMAL", "original_uoi_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "sequence_number": 0}, {"id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "name": "01.Poland", "container_state": "NORMAL", "original_uoi_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "sequence_number": 0}, {"id": "341bbf240ea033435cc225cd1add5c009bc067d7", "name": "PL", "container_state": "NORMAL", "original_uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "sequence_number": 0}, {"id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "name": "01. PL - Nutella", "container_state": "NORMAL", "original_uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "sequence_number": 0}, {"id": "5353bb35177d792b073acc634e010df2908fde32", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 1, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "89d439933e1492d05536b41d85e8f8c33038a09b", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "89d439933e1492d05536b41d85e8f8c33038a09b", "sequence_number": 0}, {"id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "name": "NUTELLA PLANT-BASED LAUNCH", "container_state": "NORMAL", "original_uoi_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "sequence_number": 0}, {"id": "413c776f4416163b88737d53bb72dfe23bfd2430", "name": "Global", "container_state": "NORMAL", "original_uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "sequence_number": 0}, {"id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "sequence_number": 0}, {"id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "name": "01. Nutella Core", "container_state": "NORMAL", "original_uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "sequence_number": 0}, {"id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "name": "Nutella", "container_state": "NORMAL", "original_uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "46244570083694cb1a7a0deaad7abc87800c39d1", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "46244570083694cb1a7a0deaad7abc87800c39d1", "sequence_number": 0}, {"id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "name": "Oliver Read Only", "container_state": "NORMAL", "original_uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "sequence_number": 0}, {"id": "23b155c32d5c6142914b41458234c100812bbec8", "name": "Oliver", "container_state": "NORMAL", "original_uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "sequence_number": 0}, {"id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "name": "Z - Exchange", "container_state": "NORMAL", "original_uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "eb8dd489a64518ea4a6b62a7fbb6f28940f968ae", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "eb8dd489a64518ea4a6b62a7fbb6f28940f968ae", "sequence_number": 0}, {"id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "name": "Oliver Read Only", "container_state": "NORMAL", "original_uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "sequence_number": 0}, {"id": "23b155c32d5c6142914b41458234c100812bbec8", "name": "Oliver", "container_state": "NORMAL", "original_uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "sequence_number": 0}, {"id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "name": "Z - Exchange", "container_state": "NORMAL", "original_uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "sequence_number": 0}], "complete": true, "sequence_number": 1, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}], "creator_id": "1003", "asset_state": "NORMAL", "checked_out": false, "folder_path": "", "content_size": 6538, "content_type": "BITMAP", "content_state": "NORMAL", "date_imported": "2025-11-11T14:38:55.16+01:00", "import_job_id": 216793, "subscribed_to": false, "collection_ids": [], "latest_version": true, "legacy_model_id": 116, "content_editable": true, "import_user_name": "bizAdmin", "date_last_updated": "2025-11-11T14:39:50.187+01:00", "metadata_model_id": "ECOMMERCE", "original_asset_id": "63b10b8e46df50e279c15fc2e12ae39e3585b41a", "rendition_content": {"preview_content": {"id": "c81d52be994a6c682b7fd1d0d2f5cea404606c61", "url": "/otmmapi/v6/renditions/c81d52be994a6c682b7fd1d0d2f5cea404606c61", "name": "nutella pbased_beauty-S.png", "width": 300, "height": 168, "mime_type": "image/png", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "PREVIEW", "content_path": "data\\\\repository\\\\screen\\\\vol0\\\\184\\\\nutella pbased_beauty-S_c81d52be994a6c682b7fd1d0d2f5cea404606c61.png", "content_size": 62296, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "thumbnail_content": {"id": "054e0f90a3787a59c59d0b4879e186f748292c64", "url": "/otmmapi/v6/renditions/054e0f90a3787a59c59d0b4879e186f748292c64", "name": "nutella pbased_beauty-T.png", "width": 300, "height": 168, "mime_type": "image/png", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "THUMBNAIL", "content_path": "data\\\\repository\\\\thumb\\\\vol0\\\\198\\\\nutella pbased_beauty-T_054e0f90a3787a59c59d0b4879e186f748292c64.png", "content_size": 62296, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_content_info": {"master_content": {"id": "8f7d170780bfe49fc349fb1737902fac1b5ec569", "url": "/otmmapi/v6/renditions/8f7d170780bfe49fc349fb1737902fac1b5ec569", "name": "nutella pbased_beauty.jpg", "width": 300, "height": 168, "mime_type": "image/jpeg", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\224\\\\nutella pbased_beauty_8f7d170780bfe49fc349fb1737902fac1b5ec569.jpg", "content_size": 6538, "unit_of_size": "BYTES", "content_checksum": "ec5144fe641216b55573e5c76c0367cf", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_state_user_id": "1003", "master_content_info": {"id": "8f7d170780bfe49fc349fb1737902fac1b5ec569", "url": "/otmmapi/v6/renditions/8f7d170780bfe49fc349fb1737902fac1b5ec569", "name": "nutella pbased_beauty.jpg", "width": 300, "height": 168, "mime_type": "image/jpeg", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\224\\\\nutella pbased_beauty_8f7d170780bfe49fc349fb1737902fac1b5ec569.jpg", "content_size": 6538, "unit_of_size": "BYTES", "content_checksum": "ec5144fe641216b55573e5c76c0367cf", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "delivery_service_url": "https://ppr.dam.ferrero.com/adaptivemedia/rendition?id=63b10b8e46df50e279c15fc2e12ae39e3585b41a", "product_associations": false, "security_policy_list": [{"id": 5467, "name": "Marketing Viewer", "status": "NORMAL", "created_by": "1003", "create_date": "2023-10-06T16:52:07.297+02:00", "description": "Marketing Viewer", "ownership_type": "PUBLIC"}, {"id": 11385, "name": "Oliver Viewer", "status": "NORMAL", "created_by": "1003", "create_date": "2025-11-03T11:07:04.697+01:00", "description": "Oliver Viewer", "ownership_type": "PUBLIC"}], "thumbnail_content_id": "054e0f90a3787a59c59d0b4879e186f748292c64", "content_state_user_id": "1003", "content_state_user_name": "OTMM BusinessAdmin", "asset_lock_state_user_id": "1001", "metadata_state_user_name": "OTMM BusinessAdmin", "access_control_descriptor": {"permissions_map": {"entry": [{"key": "text.securityPolicy.permission.Custom04Permission", "value": true}, {"key": "text.securityPolicy.permission.ContentEditPermission", "value": true}, {"key": "text.securityPolicy.permission.AssetViewPermission", "value": true}, {"key": "text.securityPolicy.permission.ProjectViewPermission", "value": true}, {"key": "text.securityPolicy.permission.MembershipEditPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom03Permission", "value": true}, {"key": "text.securityPolicy.permission.MetaDataEditPermission", "value": true}, {"key": "text.securityPolicy.permission.EditParentsPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom02Permission", "value": true}, {"key": "text.securityPolicy.permission.ExportPermission", "value": true}, {"key": "text.securityPolicy.permission.SummaryViewPermission", "value": true}, {"key": "text.securityPolicy.permission.PreviewViewPermission", "value": true}, {"key": "text.securityPolicy.permission.SubscribePermission", "value": true}, {"key": "text.securityPolicy.permission.DeleteAssetPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom01Permission", "value": true}]}}, "content_lock_state_user_id": "1003", "asset_state_last_update_date": "2025-11-11T14:39:50.187+01:00", "content_lock_state_user_name": "bizAdmin", "metadata_lock_state_user_name": "tsuper", "content_state_last_update_date": "2025-11-11T14:38:55.317+01:00", "inherited_metadata_collections": [{"container_id": "46244570083694cb1a7a0deaad7abc87800c39d1", "container_name": "00. Master Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "46244570083694cb1a7a0deaad7abc87800c39d1", "originator_id": "46244570083694cb1a7a0deaad7abc87800c39d1", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00. Master Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "container_name": "CONTENT SCALING 12345", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "originator_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CONTENT SCALING 12345"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "originator_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000565"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "originator_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CONTENT_SCALING_12_JV_LA_MLT_NUT_0000565"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "originator_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "originator_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "originator_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "originator_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local adaptation of global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "originator_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "originator_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "originator_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "BG"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "BG"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "MD"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "RO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "originator_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2024/2025"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "originator_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2735"}, "display_value": "RO, Asset Owner (assetownerro, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2735"}, "display_value": "RO, Asset Owner (assetownerro, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "originator_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2735"}, "display_value": "RO, Asset Owner (assetownerro, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2735"}, "display_value": "RO, Asset Owner (assetownerro, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "originator_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "A1"}, "display_value": "Local Campaign ready for localization", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "originator_id": "5f47100767fd6517861b6ee337ea83697edfa66a", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.DEPARTMENTNAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "7a2be540205cbf69067d7f45d6fcf2ccdb09ea50", "container_name": "02.Campaigns", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "7a2be540205cbf69067d7f45d6fcf2ccdb09ea50", "originator_id": "7a2be540205cbf69067d7f45d6fcf2ccdb09ea50", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "02.Campaigns"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "a0c1ace9b1a779f115d94d044718d9c255c5f154", "container_name": "01.Standard", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "a0c1ace9b1a779f115d94d044718d9c255c5f154", "originator_id": "a0c1ace9b1a779f115d94d044718d9c255c5f154", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "01.Standard"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "e0683b3c0bd99442ce0240ff4bd15eb34c8e1be0", "container_name": "01.Romania", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "e0683b3c0bd99442ce0240ff4bd15eb34c8e1be0", "originator_id": "e0683b3c0bd99442ce0240ff4bd15eb34c8e1be0", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "01.Romania"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "154c946e28d7ba2bb35fe8ce1360eeda3baba4b6", "container_name": "RO", "container_type_id": "GLOBALMARKETUNIT", "container_type_name": "L6 - MARKET UNIT", "inherited_metadata_values": [{"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "154c946e28d7ba2bb35fe8ce1360eeda3baba4b6", "originator_id": "154c946e28d7ba2bb35fe8ce1360eeda3baba4b6", "inherited_field_id": "b94dd71b732e3c1df6ae63216c53d4d4b0e7f002"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E58"}, "display_value": "ROMANIA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "154c946e28d7ba2bb35fe8ce1360eeda3baba4b6", "originator_id": "154c946e28d7ba2bb35fe8ce1360eeda3baba4b6", "inherited_field_id": "13063087b81ea172db42e69ed8e8fa013cd5bfe0"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Local RO Editable Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "154c946e28d7ba2bb35fe8ce1360eeda3baba4b6", "originator_id": "154c946e28d7ba2bb35fe8ce1360eeda3baba4b6", "inherited_field_id": "bf49ba2a40d0d0dccee4d5de7381659b106dd89a"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Nutella Local RO Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "154c946e28d7ba2bb35fe8ce1360eeda3baba4b6", "originator_id": "154c946e28d7ba2bb35fe8ce1360eeda3baba4b6", "inherited_field_id": "3c0070e420882e3e18f6097811cb60a67239003b"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local RO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "154c946e28d7ba2bb35fe8ce1360eeda3baba4b6", "originator_id": "154c946e28d7ba2bb35fe8ce1360eeda3baba4b6", "inherited_field_id": "7f3c1933b61e900457ea6e2aab750303882873d4"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "154c946e28d7ba2bb35fe8ce1360eeda3baba4b6", "originator_id": "154c946e28d7ba2bb35fe8ce1360eeda3baba4b6", "inherited_field_id": "b0c960759e48c0fcdcb650417179a614da95e866"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Local RO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "154c946e28d7ba2bb35fe8ce1360eeda3baba4b6", "originator_id": "154c946e28d7ba2bb35fe8ce1360eeda3baba4b6", "inherited_field_id": "6f603fcc63415e266dc35cf2314d31357a2966bf"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "154c946e28d7ba2bb35fe8ce1360eeda3baba4b6", "originator_id": "154c946e28d7ba2bb35fe8ce1360eeda3baba4b6", "inherited_field_id": "495fa4f08769a021cfa907dfb7a903fade9bd19a"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "154c946e28d7ba2bb35fe8ce1360eeda3baba4b6", "originator_id": "154c946e28d7ba2bb35fe8ce1360eeda3baba4b6", "inherited_field_id": "e3b647e172a89e1e7cbdd2964faff1bca8dcf520"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "154c946e28d7ba2bb35fe8ce1360eeda3baba4b6", "originator_id": "154c946e28d7ba2bb35fe8ce1360eeda3baba4b6", "inherited_field_id": "6870cca056b54cd400a9fbd4fe75513e69cedcdd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "container_name": "01. MC - Nutella", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "originator_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "inherited_field_id": "5efe2981e6f9afca7ed3fc91a171f02162ef23e3"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E023"}, "display_value": "MULTI COUNTRY EUROPE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "originator_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "originator_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "originator_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "originator_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "inherited_field_id": "0de507c8b9d1f5942b6376b6c2a2b3ec1097e42e"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "originator_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "inherited_field_id": "ca70a6d55e4277ecbef2a01a593c614501cbcf74"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "originator_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "inherited_field_id": "3e9d669ab1047383d0416ba40af75744148c94c8"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "originator_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "inherited_field_id": "0e241fc386dcd91baa31a409e297169fe4a352c2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "originator_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "inherited_field_id": "2e3e0f2be0e487b540d9b63cb8c0e9ed9c6b1bb6"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "originator_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "inherited_field_id": "359c98154f230a60acc6b4eb048e129411d7a778"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "originator_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "inherited_field_id": "e92f9f10c0c29dda8261218c2c72a0baa66472f2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "originator_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "inherited_field_id": "15dff42c3b196ba3ae5b3c2ea33f00e347e6f654"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "tabular": false, "value_id": {"uoi_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "originator_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "inherited_field_id": "0ae044cd9dddf86cd9406c9edc3996b18c430be0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "name": "AMMC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AMMC", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LOCAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "originator_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "inherited_field_id": "7806fed6127b50c21f6b03e1f7b63f3dedc1e8d1"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "tabular": false, "value_id": {"uoi_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "originator_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "inherited_field_id": "4c8a2d6e178638bfacfeaf3f7f6f1000304693a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "name": "Product Asset Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Asset Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCT_ASSET_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "originator_id": "f79f1e0903d1c0f80bdf8bdf0b2313d053986581", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "5353bb35177d792b073acc634e010df2908fde32", "container_name": "EU", "container_type_id": "GEOGRAPHYLOCAL", "container_type_name": "L4 - GEOGRAPHY LOCAL", "inherited_metadata_values": [{"id": "FERRERO.MARKET.FOLDER.GLOBAL", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "4c4d4bf36bf8b1ace55f990e78d6332a9cb20990"}, "metadata_element": {"id": "FERRERO.MARKET.FOLDER.GLOBAL", "name": "Global/Local (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "LOCAL"}, "display_value": "Local", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local (Marketing)", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "GLOBALLOCAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_AREA", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "3dc200c993ab8263952dc6da1498026f615f45dd"}, "metadata_element": {"id": "MARKETING_AREA", "name": "AREA", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E010"}, "display_value": "EUROPE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "AREA", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "AREA", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "AREA", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "dc7749c3e113ec9e0b9e9a3840ea55673ca5e49f"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "f2d658a3829c2ea158ae70a4b4e7928bcf88f8e2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "972d0258a82de85672bd84d8af68cdb67ad3d3ca"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "1212505ad3fe4c9d7458568f3d95aeb4c4e5c37e"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "9d1dfdef55ff7a3eb03552988ddf729c7a0f5107"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "54f006eeb366121a29ee98da33d437615dcd34e0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "1fd8802010e30d44cebb2f3eb090b12ac550f97d"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "be0dc9a87262ee7fd165237b531ba3b7aa93a260"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "5353bb35177d792b073acc634e010df2908fde32", "originator_id": "5353bb35177d792b073acc634e010df2908fde32", "inherited_field_id": "2f99f0f0f9e43fb34df9222c8b73a86fb78e473e"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "container_name": "Nutella", "container_type_id": "GLOBALBRAND", "container_type_name": "L3 - BRAND", "inherited_metadata_values": [{"id": "FERRERO.TABULAR.NEW.BRAND", "tabular": true, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "9bb1c183135f5240f09132aef59c4ea48c762381"}, "metadata_element": {"id": "FERRERO.TABULAR.NEW.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF30"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND (Marketing)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF30"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "BRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TABULAR_BRAND", "column_name": "BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.NEW.BRAND", "parent_table_name": "BRAND (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "tabular": true, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "a37b13c02cba799378211e17b73234a0d836f9b6"}, "metadata_element": {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "JV"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND(HARMONIZED)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "JV"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.HARMONIZEDBRAND", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_HARMONIZEDBRAND", "column_name": "HARMONIZEDBRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.HARMONIZEDBRAND", "parent_table_name": "BRAND(HARMONIZED)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "AGENCY.COLLABORATION", "tabular": false, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "183d6e0957a9940f9b18ef44f46d957802b63397"}, "metadata_element": {"id": "AGENCY.COLLABORATION", "name": "Agency collaboration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency collaboration", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "AGENCY_COLLABORATION", "column_name": "AGENCY_COLLABORATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "AGENCY.SHARING", "tabular": false, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "d0e2b725ddfdc452cc3ba750bbe8ec059c6b01ba"}, "metadata_element": {"id": "AGENCY.SHARING", "name": "Agency sharing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency sharing", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "AGENCY_SHARING", "column_name": "AGENCY_SHARING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "CONTENT.SCALING.AGENCYNAME", "tabular": false, "value_id": {"uoi_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "originator_id": "571065cd6a9f0fbf013aeea2f3878dd50bc91e34", "inherited_field_id": "f9dfa695cc5ef8cd3fafada4e44cfdaa1522d58a"}, "metadata_element": {"id": "CONTENT.SCALING.AGENCYNAME", "name": "Content Scaling agency name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Scaling agency name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENTSCALING_AGENCYNAME", "column_name": "CONTENTSCALING_AGENCYNAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "container_name": "01. Nutella Core", "container_type_id": "GLOBALSUBCATEGORY", "container_type_name": "L2 - SUBCATEGORY", "inherited_metadata_values": [{"id": "MARKETING_SUBCATEGORY", "tabular": false, "value_id": {"uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "originator_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "inherited_field_id": "3000ad591e09b5c75f85fc2ccbb9ebeb31b3ab78"}, "metadata_element": {"id": "MARKETING_SUBCATEGORY", "name": "SUBCATEGORY", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Mart-Nutella-Core"}, "display_value": "Nutella Core", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "SUBCATEGORY", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "SUBCATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "SUBCATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "tabular": true, "value_id": {"uoi_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "originator_id": "8794c1fe85f6ccba5865924019f4a5ceb4c92482", "inherited_field_id": "2c751ce760d88c0e271925ea5149348106944bfa"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Subcategory Owner", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_SUBCATEGORY_OWNER_TM", "column_name": "SUBCATEGORY_OWNER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "parent_table_name": "Subcategory Owner", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "container_name": "Nutella", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "originator_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E04"}, "display_value": "NUTELLA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "originator_id": "8aef87e8b78661c85f0ec47b3b444c6f6b973c81", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final Approver BPS ", "values": [{"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "eb8dd489a64518ea4a6b62a7fbb6f28940f968ae", "container_name": "00. Master Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "eb8dd489a64518ea4a6b62a7fbb6f28940f968ae", "originator_id": "eb8dd489a64518ea4a6b62a7fbb6f28940f968ae", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00. Master Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "container_name": "CONTENT SCALING XX", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "originator_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CONTENT SCALING XX"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "originator_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000566"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "originator_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "CONTENT_SCALING_XX_JV_LA_MLT_NUT_0000566"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "originator_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "originator_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "originator_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "originator_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local adaptation of global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "originator_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000138"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "originator_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "NUTELLA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "originator_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "BE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "BE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "LU"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "NL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "originator_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2024/2025"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "originator_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "originator_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2759"}, "display_value": "PL, Asset Owner (assetownerpl, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "originator_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "A4"}, "display_value": "Localization completed", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "originator_id": "f59d4d433cb55db39058836dd4c145062b8730a3", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.DEPARTMENTNAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "20c88462ba3557e7aae759665cbe331f693d398a", "container_name": "02. Campaigns", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "20c88462ba3557e7aae759665cbe331f693d398a", "originator_id": "20c88462ba3557e7aae759665cbe331f693d398a", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "02. Campaigns"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "container_name": "01.Standard", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "originator_id": "1638869b9b347c39842effc7e5ff965de47e8e65", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "01.Standard"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "container_name": "01.Poland", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "originator_id": "fca91d1e86b77b0a5de3ffe87d4cc86b1cb1163f", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "01.Poland"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "container_name": "PL", "container_type_id": "GLOBALMARKETUNIT", "container_type_name": "L6 - MARKET UNIT", "inherited_metadata_values": [{"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "b94dd71b732e3c1df6ae63216c53d4d4b0e7f002"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E39"}, "display_value": "POLAND", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "13063087b81ea172db42e69ed8e8fa013cd5bfe0"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Local PL Editable Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "bf49ba2a40d0d0dccee4d5de7381659b106dd89a"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Nutella Local PL Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "3c0070e420882e3e18f6097811cb60a67239003b"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "7f3c1933b61e900457ea6e2aab750303882873d4"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "b0c960759e48c0fcdcb650417179a614da95e866"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Local PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "6f603fcc63415e266dc35cf2314d31357a2966bf"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local PL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "495fa4f08769a021cfa907dfb7a903fade9bd19a"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "e3b647e172a89e1e7cbdd2964faff1bca8dcf520"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "originator_id": "341bbf240ea033435cc225cd1add5c009bc067d7", "inherited_field_id": "6870cca056b54cd400a9fbd4fe75513e69cedcdd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "container_name": "01. PL - Nutella", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "5efe2981e6f9afca7ed3fc91a171f02162ef23e3"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E008"}, "display_value": "POLAND", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Local PL Editable Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0de507c8b9d1f5942b6376b6c2a2b3ec1097e42e"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E39"}, "display_value": "POLAND", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "ca70a6d55e4277ecbef2a01a593c614501cbcf74"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "3e9d669ab1047383d0416ba40af75744148c94c8"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0e241fc386dcd91baa31a409e297169fe4a352c2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "2e3e0f2be0e487b540d9b63cb8c0e9ed9c6b1bb6"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "359c98154f230a60acc6b4eb048e129411d7a778"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "e92f9f10c0c29dda8261218c2c72a0baa66472f2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "15dff42c3b196ba3ae5b3c2ea33f00e347e6f654"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "0ae044cd9dddf86cd9406c9edc3996b18c430be0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "name": "AMMC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AMMC", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LOCAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "7806fed6127b50c21f6b03e1f7b63f3dedc1e8d1"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "tabular": false, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "4c8a2d6e178638bfacfeaf3f7f6f1000304693a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "name": "Product Asset Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Asset Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCT_ASSET_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "originator_id": "86aa5e741cf494149b8065d8cc3a712f0dee16f0", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "89d439933e1492d05536b41d85e8f8c33038a09b", "container_name": "05. Final Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "89d439933e1492d05536b41d85e8f8c33038a09b", "originator_id": "89d439933e1492d05536b41d85e8f8c33038a09b", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "05. Final Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "container_name": "NUTELLA PLANT-BASED LAUNCH", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "originator_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NUTELLA PLANT-BASED LAUNCH"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "originator_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000068"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "originator_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "GL_FY25_NUT_30_NUTELLA_PLANT_00068"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "originator_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "originator_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "originator_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "originator_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Global comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "originator_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Global Campaign Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global Campaign Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "originator_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Harmonized Brand", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "originator_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Market", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "originator_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Global comm024/2025"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "originator_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "originator_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "originator_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "B1"}, "display_value": "Master campaign ready for re-mastering", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "originator_id": "9d9d075c696fa7ea0e197a2e1bbf4f8a95b503c5", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.DEPARTMENTNAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "container_name": "Global", "container_type_id": "GEOGRAPHYGLOBAL", "container_type_name": "L4 - GEOGRAPHY GLOBAL", "inherited_metadata_values": [{"id": "FERRERO.MARKET.FOLDER.GLOBAL", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "963db123044a8d3ff5d8f4aac56d35df77a7656c"}, "metadata_element": {"id": "FERRERO.MARKET.FOLDER.GLOBAL", "name": "Global/Local (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "GLOBAL"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local (Marketing)", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "GLOBALLOCAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_AREA", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "3a37ace6a53a93799e0e18773ba6c7e70305cc78"}, "metadata_element": {"id": "MARKETING_AREA", "name": "AREA", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AREA", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "AREA", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "AREA", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "9f64f884b41d2a8445f4d9cd60714e91024e8b13"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Global Editable Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "8847a6dfbebcf323a8170649b390af1a375c08b8"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Nutella Global Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "758e614412f11ecb58446966d328974daf253446"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "53df9e81ae46cf6bd2440643426224b1fb904aeb"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "name": "Published Security Policy - Restricted Visibility", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Global Published Nutella Core"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Security Policy - Restricted Visibility", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_VISIBILITY_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "6b410cc3e966037a3e534da53137d32856cd6bdb"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "b5f185da6208925fe296e074dbdfdd74678ad076"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "b9e4bba5fa277862093047710c3fccb44a553f91"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "a70b94dccf12d05fbcf6a1881e4726759d8714a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "134e6810dec03aed0a70f68bf16cdd3a390f99de"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "2c412cc87805c4f03622e671cd7cdd65402b5598"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "0f4d4a35b08b4d2aac7ce7cc18999a8e5f523edf"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Nutella Approver Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.GLOBAL APPROVER", "tabular": false, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "43af18c983afd26a477317ac0b608495d9e0b3df"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.GLOBAL APPROVER", "name": "Global approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Global approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "GLOBAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "00dacbe20687d3c5d0be9b4fc2997c572e3c36bf"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "originator_id": "413c776f4416163b88737d53bb72dfe23bfd2430", "inherited_field_id": "0fbcf70c95f5d28645e7a6187f7c429d62e60380"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Global comm"}, "display_value": "Global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Global comm"}, "display_value": "Global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "container_name": "Oliver Read Only", "container_type_id": "L3 - Agency Structure", "container_type_name": "L3 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "55530f721f18c847e35d7c828edf53461b5014b0"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "330bb6f68316aab5c45f9fe34e047cce573c67cc"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "name": "Agency Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "AGENCY_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "e30e90d694f9935d4c15c4c78891beed8853a272"}, "metadata_element": {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "name": "Published Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "PUBLISHED_ASSET_SP_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "23b155c32d5c6142914b41458234c100812bbec8", "container_name": "Oliver", "container_type_id": "L2 - Agency Structure", "container_type_name": "L2 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.AGENCY", "tabular": false, "value_id": {"uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "originator_id": "23b155c32d5c6142914b41458234c100812bbec8", "inherited_field_id": "48fcbc397986aca5bb8722a95197dd0a46f19b4e"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_AGENCY", "column_name": "AGENCY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "container_name": "Z - Exchange", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "YY"}, "display_value": "AGENCIES", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Final Approver BPS ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}], "asset_lock_state_last_update_date": "2025-11-18T15:15:36.82+01:00", "content_lock_state_last_update_date": "2025-11-11T14:38:55.387+01:00"} \N \N active f \N \N 2025-11-21 03:26:29.696276 2025-11-21 03:26:29.696276 2025-11-21 03:26:29.696276 10 09Dux1 DUMMY_ID_123 dummy .jpg 100 image/jpeg \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N C000000000 DUMMY_FOLDER Box File ID: 000000000\nBox URL: https://box.com/dummy\nDAM Asset ID: DUMMY_ID_123 {"name": "dummy.jpg", "metadata": {"metadata_element_list": []}, "file_size": 100, "mime_type": "image/jpeg"} \N \N active f \N \N 2025-11-24 19:18:17.371254 2025-11-24 19:18:17.371254 2025-11-24 19:29:31.325633 12 WcErVe b5e69f3efdd81cd3a604708ed10c55a466d68b0e download .jpg \N image/jpeg \N \N \N \N \N \N \N \N \N \N \N \N \N C000000783 4b05a895330aa2fb6046f59731aba5dd93858431 C000000794 c61cb01650b9ca8e8a9e27f9d47a5f8273753ed9 Box File ID: 2105216512625\nBox URL: https://app.box.com/file/2105216512625\nDAM Asset ID: b5e69f3efdd81cd3a604708ed10c55a466d68b0e {"name": "download.jpg", "links": {"links": [], "source_id": "b5e69f3efdd81cd3a604708ed10c55a466d68b0e"}, "locked": false, "deleted": false, "expired": false, "version": 1, "asset_id": "b5e69f3efdd81cd3a604708ed10c55a466d68b0e", "metadata": {"id": "ECOMMERCE", "name": "Marketing Asset", "type": "com.artesia.metadata.MetadataModel", "legacy_id": 116, "metadata_element_list": [{"id": "FERRERO.CATEGORY.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200054, "metadata_element_list": [{"id": "FERRERO.FIELD.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Status", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.CONTENT_STATUS", "edit_type": "COMBO_NOTNULL", "facetable": false, "searchable": true, "table_name": "FERRERO_CONTENT_STATUS_MD", "column_name": "CONTENT_STATUS", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9215, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRER.CATEGORY.ASSET_INFO", "name": "Asset Info", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200022, "metadata_element_list": [{"id": "FERRERO.FIELD.MKTG.ASSET TYPE", "name": "Asset Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.ASSETTYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.FISCAL YEAR", "name": "Release Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2026/2027"}, "display_value": "2026/2027", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Release Fiscal Year", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_DOMAIN_FISCAL_YEAR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "FISCAL__YEAR", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "name": "Main Languages", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1210, "metadata_element_list": [{"id": "MAIN_LANGUAGES", "name": "MAIN LANGUAGES", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "MAIN LANGUAGES", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MAIN LAGUAGES_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MAIN_LANGUAGE_TABLE", "column_name": "MAIN_LANGUAGE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "parent_table_name": "Main Languages", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.ASSET DESCRIPTION", "name": "Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Description", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "DESCR", "data_length": 249, "description": "Descriptive information", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.FLAVOUR", "name": "Flavour", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Flavour", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.FLAVOUR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FLAVOUR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.SIZE", "name": "Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Size", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.SIZE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SIZE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1241, "metadata_element_list": [{"id": "FERRERO.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Compliance", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ASSETCOMPLIANCE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_COMPLIANCE", "column_name": "ASSET_COMPLIANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "parent_table_name": "Asset Compliance", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.TAG DETAILS", "name": "Tag Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 118, "metadata_element_list": [{"id": "ARTESIA.FIELD.TAG", "name": "Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "food", "field_value": {"type": "string", "value": "food"}, "display_value": "food", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Tag", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "food", "field_value": {"type": "string", "value": "food"}, "display_value": "food", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.TAGS", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "OTMM_TAGS", "column_name": "TAG", "data_length": 80, "description": "Tag", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG CONFIDENCE", "name": "Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 67.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Confidence", "values": [{"value": {"type": "decimal", "value": 67.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Confidence", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG TYPE", "name": "Tag Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Tag Type", "values": [{"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "TAG_TYPE", "data_length": 10, "description": "Tag Type", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED BY", "name": "Associated By", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Associated By", "values": [{"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_BY", "data_length": 10, "description": "Associated By", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED DATE", "name": "Associated Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-14T14:24:27.55+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Associated Date", "values": [{"value": {"type": "dateTime", "value": "2026-01-14T14:24:27.55+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_DATE", "data_length": 10, "description": "Associated Date", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.STATE", "name": "Global/Local", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "GLOBAL"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO_NOTNULL", "facetable": true, "searchable": true, "table_name": "FERRERO_IC_ASSET_DETAILS", "column_name": "ASSET_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.ASPECT RATIO", "name": "Aspect Ratio (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio (Marketing)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASPECT_RATIO", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASPECT_RATIO", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "name": "Tag (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1222, "metadata_element_list": [{"id": "MARKETING_TAG", "name": "Marketing Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Marketing Tag", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.DOMAIN.TAG", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TAG_MARKET", "column_name": "TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "parent_table_name": "Tag (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.TAGS", "name": "Auto-Generated Tags", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Auto-Generated Tags", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "AUTO_GENERATED_TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CERTIFIER", "name": "Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approver", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.MARKETING.FIELD.APPROVAL DATE", "name": "Approval__Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approval__Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.LEGAL APPROVAL DATE", "name": "Legal Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CERTIFIER", "name": "IA&CC Certifier", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Certifier", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CC APPROVAL DATE", "name": "IA&CC Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "name": "Extended Approval", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1230, "metadata_element_list": [{"id": "FERRERO.FIELD.EXTENDED.APPROVAL", "name": "Extended Approval required by:", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended Approval required by:", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COMMENTS", "name": "Comment", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comment", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "COMMENTS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.DATE", "name": "Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USERS", "name": "User ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "User ID", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "USERS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXTENDED.JOBID", "name": "Extended JobID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended JobID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.MIGRATION.INDEX", "name": "Migration Index", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Migration Index", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MIGRATION.INDEX", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MIGRATION_INDEX", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "FERRERO_MARKET_MARKETING_CREATOR", "name": "Marketing Creator", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Marketing Creator", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.CREATOR", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MARKETING_CREATOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "ARTESIA.FIELD.IS LATEST VERSION", "name": "Is Latest Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Y"}, "display_value": "Yes", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Is Latest Version", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.YES_NO", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "IS_LATEST_VERSION", "data_length": 1, "description": "Is this the latest version? (Y/N)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET VERSION", "name": "Asset Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 1}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Version", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "INTEGER", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "VERSION", "data_length": 12, "description": "Version number of asset", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET_ID", "name": "Asset ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "b5e69f3efdd81cd3a604708ed10c55a466d68b0e"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset ID", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "LOGICAL_UOI_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.ECOMMERCE STATUS", "name": "Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "PUBLISHED"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Status", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "ASSET_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CREATOR", "name": "Uploaded by", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Uploaded by", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_USER_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.FIELD.CREATION DATE", "name": "Upload Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-14T14:23:41.747+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Upload Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_DT", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.ASSET NAME", "name": "Asset Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "download.jpg"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Name", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "description": "Original name of master object", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.CONTENT TYPE", "name": "Content Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "BITMAP"}, "display_value": "Image", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Type", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.CONTENT_TYPES", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "CONTENT_TYPE", "data_length": 8, "description": "Content Type", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.MIME TYPE", "name": "File Extension", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "image/jpeg"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Extension", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_MIME_TYPE", "data_length": 80, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.FILE.SIZE", "name": "File Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "long", "value": 18093}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Size", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "LONG", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_SIZE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP RESOLUTION", "name": "Bitmap Resolution", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 72}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Resolution", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_RESOLUTION", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP WIDTH", "name": "Bitmap Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 257}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Width", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_WIDTH", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP HEIGHT", "name": "Bitmap Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 196}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Height", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_HEIGHT", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "name": "Approval Metadata", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1249, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.DEPARTMENT", "name": "Department", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Department", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "DEPARTMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.CERTIFIER", "name": "Certifier", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Certifier", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL DATE", "name": "Approval Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Approval Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "APPROVAL_DATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.COMMENT", "name": "Comments", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comments", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "COMMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.TYPE OF APPROVAL", "name": "Type of Approval", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Approval", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "TYPE_OF_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL STATUS", "name": "Approval Status", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Approval Status", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "APPROVAL_STATUS", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.SUB JOBID", "name": "Sub Job Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sub Job Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.VIDEO.BIT_RATE", "name": "Bitrate", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitrate", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "BIT_RATE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.EMBEDDED.FIELD.DURATION", "name": "Duration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Duration", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "DURATION_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.ASPECT RATIO", "name": "Aspect Ratio", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "ASPECT_RATIO", "data_length": 30, "displayable": false, "instructions": "ASPECT_RATIO", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME HEIGHT", "name": "Frame Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Height", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_HEIGHT", "data_length": 12, "displayable": true, "instructions": "FRAME_HEIGHT", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME WIDTH", "name": "Frame Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Width", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_WIDTH", "data_length": 12, "displayable": true, "instructions": "FRAME_WIDTH", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.ASPECT.RATIO.POC", "name": "Aspect Ratio(POC)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio(POC)", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASPECT_RATIO_TABLE", "column_name": "ASPECT_RATIO", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "PRODUCT.DETAILS", "name": "Product Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200029, "metadata_element_list": [{"id": "FERRERO.TABLE.EANCODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1208, "metadata_element_list": [{"id": "EAN_CODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "EAN CODE/ 77 CODE", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "EAN.CODE", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "EAN_CODE", "column_name": "EAN_CODE_DESCRIPTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "COUNTRY", "name": "COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "EAN_CODE", "column_name": "COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKETING.ADVANCE.PRODUCT.LINK", "name": "Asset-to-product relation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset-to-product relation", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_MARKETING_ADVANCE_PRODUCT_LINK", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ADVANCE_PRODUCT_LINK", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 10182, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.SUB BRAND", "name": "Sub-Brands", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Sub-Brands", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.SUBBRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "SUB_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT WEIGHT", "name": "Product Weight", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Weight", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_WEIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.CONSUMER UNIT PACKAGING", "name": "Consumer Unit Packaging", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Consumer Unit Packaging", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PACK", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "CONSUMER_UNIT_PACKAGING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.4 DIGIT CODE", "name": "4 Digit Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "4 Digit Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "DIGITCODE", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERREO.ECOM.RETAILER_SPECIFIC_FIELD", "name": "Retailer Specific", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Retailer Specific", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "RETAILER_SPECIFIC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "cascading_group_id": "FERRERO.RETAILER.SPECIFIC", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY START PERIOD", "name": "Asset validity start period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity start period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_STARTING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY END PERIOD", "name": "Asset validity end period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity end period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_ENDING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.ASSET.NAMING.CONVENTION", "name": "Does asset need GS1 naming convention", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Does asset need GS1 naming convention", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASSETNAMINGCONVENTION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_NAMING_CONVENTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9515, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT VIEW", "name": "Product View", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product View", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT VIEW", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_VIEW", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT ANGLE", "name": "Product Angle", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Angle", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT.ANGLE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_ANGLE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT STATE", "name": "Product State", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product State", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT STATE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PROMOTION ID", "name": "Promo ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Promo ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROMO_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.BUSINESS.ASSET TYPE", "name": "Asset Type (eDAM)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Angled view", "field_value": {"type": "string", "value": "angledview"}, "display_value": "ANGLED VIEW", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Type (eDAM)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "OTMM.DOMAIN.OTMM_ASSETTYPE_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_BUSINESS_INFO", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7244, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200048, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.AGENCY NAME", "name": "Agency Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "0000000001"}, "display_value": "ATest", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Agency Name", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.AGENCY_NAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AGENCY_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7336, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.CREATIX", "name": "CreativeX", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200059, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.CREATIVEX", "name": "Confidence", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1245, "metadata_element_list": [{"id": "FERRERO.TAB.FIELD.CREATIVEX", "name": "Platform > Rating (%)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Platform > Rating (%)", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_CREATIVEX", "column_name": "CREATIVEX_NEW", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CREATIVEX", "parent_table_name": "Confidence", "cascading_group_id": "FERRERO.CREATIVEX.CHAR", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.CREATIVEX LINK", "name": "CreativeX Hyperlink", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "CreativeX Hyperlink", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_CREATIVEX", "column_name": "CREATIVE_LINK", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.IP_RIGHTS", "name": "IP Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200046, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.IPRIGHT", "name": "IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IP Rights", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.IPRIGHTS", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IP_RIGHTS", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.BUYOUT", "name": "Touchpoint Scope", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Touchpoint Scope", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.TOTAL_BUYOUT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TOTAL_BUYOUT", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.FERRERO PROPERTY", "name": "Ferrero Property", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Ferrero Property", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.FERRERO_PROPERTY", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FERRERO_PROPERTY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200035, "metadata_element_list": [{"id": "FERRERO.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1209, "metadata_element_list": [{"id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "name": "IP Coverage, Area, Region & Market Unit", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Coverage, Area, Region & Market Unit", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "IPCOVERAGE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "cascading_group_id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHT TYPE", "name": "Copyright Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHT_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.MEDIATYPE", "name": "Media Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Media Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MEDIA_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "MEDIA_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE FROM", "name": "Expiration of Usage - From", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - From", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_FROM", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE TO", "name": "Expiration of Usage - To", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - To", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_TO", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO._DURATION", "name": "IP Duration", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Duration", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "ECOM_DURATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHTTYPE DETAILS", "name": "Copyright Type Details", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type Details", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHTTYPE_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 6, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.MARKET.VID_STAT_RIGHT", "name": "Video & Static Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200047, "metadata_element_list": [{"id": "FERRERO.MARKET.VID_N_STAT", "name": "Video and Static Right", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video and Static Right", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VID_AND_STAT_RIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.VID_STAT_TYPE", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1221, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.TYPE_VID", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Video & Static Right", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TYPE_VID_STAT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_MARKET_TYPE_VID_STAT", "column_name": "TYPE_OF_VIDEO_STATIC_RIGHT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.VID_STAT_TYPE", "parent_table_name": "Type of Video & Static Right", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKET.PROD_COMPANY", "name": "Production House", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Production House", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.PRODUCT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200050, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.LICENSIN", "name": "Licensing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Licensing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSING", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "cascading_group_id": "FERRERO.MARKET.CG.LICENSE", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.SPOT_DETAILS", "name": "Spot Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200049, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.SPOT_VERSION", "name": "Spot Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Version", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_VERSION", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_VERSION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.SPOT_TYPE", "name": "Spot Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_TYPE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.DIRECTOR_NAME", "name": "Director Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Director Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "DIRECTOR_NAME", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VIDEO_POST_PROD_COMPANY", "name": "Video Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VID_POST_PROD_CONTACT", "name": "Video Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_COMPANY", "name": "Audio Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_CONTACT", "name": "Audio Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.BROADCASTER.CODE", "name": "Broadcaster Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Broadcaster Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BROADCASTER_CODE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.TECHNICAL_VALIDATION", "name": "Technical Validation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Technical Validation", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TECHNICAL_VALIDATION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS", "name": "Media Analysis", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1002, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "name": "Categories", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 105, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY NAME", "name": "Category Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "indoor_marketstore"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Category Name", "values": [{"value": {"type": "string", "value": "indoor_marketstore"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "NAME", "data_length": 100, "description": "Category Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY CONFIDENCE", "name": "Category Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 56.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Category Confidence", "values": [{"value": {"type": "decimal", "value": 56.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "CONFIDENCE", "data_length": 10, "description": "Category Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES COUNT", "name": "Faces Count", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Faces Count", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACECOUNT", "column_name": "COUNT", "data_length": 10, "description": "Faces Count", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "name": "Face Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 106, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME", "name": "Recognized Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME", "data_length": 2000, "description": "Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME CONFIDENCE", "name": "Recognized Name Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME_CONFIDENCE", "data_length": 10, "description": "Name Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE", "name": "Person Age", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE", "data_length": 10, "description": "Person Age", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE CONFIDENCE", "name": "Person Age Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Person Age Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_CONFIDENCE", "data_length": 10, "description": "Person Age Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER", "name": "Gender", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Gender", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.GENDER", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER", "data_length": 40, "description": "Gender", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER CONFIDENCE", "name": "Gender Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Gender Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER_CONFIDENCE", "data_length": 10, "description": "Gender Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.FACE COORDS", "name": "Face Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "FACE_COORDS", "data_length": 200, "description": "Face Coordinates like postion, height,width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE GROUP", "name": "Person Age Group", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age Group", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.AGE GROUP", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_GROUP", "data_length": 10, "description": "Person Age Group", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "name": "Safe Content", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 107, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONTENT TYPE", "name": "Safe Content Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Safe Content Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENTS", "data_length": 20, "description": "Safe Content Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONFIDENCE", "name": "Content Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Content Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENT_CONFIDENCE", "data_length": 10, "description": "Safe Content Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "name": "Colors", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 108, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.NAME", "name": "Color", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Yellow"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Color", "values": [{"value": {"type": "string", "value": "Yellow"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "Grey"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "NAME", "data_length": 25, "description": "COLOR", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.PROPORTION", "name": "Color Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Color Confidence", "values": [{"is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "PROPORTION", "data_length": 10, "description": "Proportion", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.FOREGROUND", "name": "Foreground Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Yellow"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Foreground Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "FOREGROUND", "data_length": 25, "description": "Foreground Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.BACKGROUND", "name": "Background Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Grey"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Background Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "BACKGROUND", "data_length": 25, "description": "Background Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.ISBW", "name": "Is Black and White", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "false"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Is Black and White", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "ISBW", "data_length": 10, "description": "Is Black and White", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "name": "Captions", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 109, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION TEXT", "name": "Caption Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "a close up of a keyboard"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Caption Text", "values": [{"value": {"type": "string", "value": "a close up of a keyboard"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "TEXT", "data_length": 2000, "description": "Caption Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION CONFIDENCE", "name": "Caption Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 56.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Caption Confidence", "values": [{"value": {"type": "decimal", "value": 56.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "CAPTION_CONFIDENCE", "data_length": 10, "description": "Caption Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "name": "Image Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 110, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.IMAGE TYPE", "name": "Analysis Image Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Analysis Image Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_IMAGE_TYPE", "column_name": "TYPE", "data_length": 100, "description": "Image Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "parent_table_name": "Image Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.DATE", "name": "Date: Media Analysis", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-14T14:24:27+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date: Media Analysis", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MEDIA_ANALYSIS_DATE", "data_length": 25, "description": "Date Media Analysis was done on the asset.", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR LANGUAGE", "name": "Image Text Language", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "unk"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Image Text Language", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "LANGUAGE", "data_length": 10, "description": "OCR data language", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR TEXT", "name": "Text on Image", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Text on Image", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "TEXT", "data_length": 4000, "description": "OCR Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "name": "Embedded Brand Info", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 119, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.NAME", "name": "Embedded Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Embedded Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Embedded Brand Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.CONFIDENCE", "name": "Embedded Brand Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Embedded Brand Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Embedded Brand Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.COORDINATES", "name": "Embedded Brand Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Embedded Brand Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "COORDINATES", "data_length": 200, "description": "Embedded Brand Coordinates like position, height, width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "HYBRIS.PRODUCT.INFO", "name": "PIM Item Reference", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200027, "metadata_element_list": [{"id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "name": "Hybris Item Reference", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1206, "metadata_element_list": [{"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ID", "name": "Hybris Item ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ID", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT TAG NAME", "name": "Hybris Assignment Label", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Assignment Label", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_TAG_NAME", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ATTRIBUTE NAME", "name": "Hybris Attribute Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Attribute Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ATTRIBUTE_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT CATALOG NAME", "name": "Hybris Catalog Mnemonic", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Catalog Mnemonic", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_CATALOG_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT PK", "name": "Hybris Item PK", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item PK", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_PK", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.SYSTEM ID", "name": "Hybris System ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris System ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "SYSTEM_ID", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.ASSIGNED", "name": "Assigned", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Assigned", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "ASSIGNED", "column_name": "ASSIGNED", "data_length": 38, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PIM TYPE", "name": "PIM Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "PIM Type", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_PIM_TYPE", "column_name": "PIM_TYPE", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS VIDEO", "name": "Media Analysis Video", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1003, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "name": "Labels", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 113, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.ID", "name": "Label Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "ID", "data_length": 40, "description": "Label Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.NAME", "name": "Label Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "NAME", "data_length": 40, "description": "Label Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.APPEARANCES", "name": "Label Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "APPEARANCES", "data_length": 0, "description": "Label Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "name": "Sentiments", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 114, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.ID", "name": "Sentiment Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "ID", "data_length": 40, "description": "Sentiment Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.NAME", "name": "Sentiment Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "NAME", "data_length": 40, "description": "Sentiment Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.APPEARANCES", "name": "Sentiment Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "APPEARANCES", "data_length": 0, "description": "Sentiment Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.SEEN.DURATION.RATIO", "name": "Sentiment Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Sentiment Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "name": "Keywords", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 115, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.ID", "name": "Keyword Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "ID", "data_length": 40, "description": "Keyword Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.NAME", "name": "Keyword Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "NAME", "data_length": 40, "description": "Keyword Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.APPEARANCES", "name": "Keyword Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Keyword Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "name": "Faces", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 111, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.ID", "name": "Face Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "ID", "data_length": 40, "description": "Face Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.NAME", "name": "Face Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "NAME", "data_length": 40, "description": "Face Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.TITLE", "name": "Face Title", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Title", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "TITLE", "data_length": 249, "description": "Face Title", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.DESCRIPTION", "name": "Face Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Face Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.APPEARANCES", "name": "Face Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "APPEARANCES", "data_length": 0, "description": "Face Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SPEAKER.FACE.ID", "name": "Video Speaker Object Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Speaker Object Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "THUMBNAIL_OBJECT_ID", "data_length": 40, "description": "Video Speaker Object Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.SEEN.DURATION.RATIO", "name": "Face Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "SEEN_DURATION_RATIO", "data_length": 20, "description": "Face Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "name": "Brands", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 112, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.ID", "name": "Video Brand Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "ID", "data_length": 40, "description": "Brand Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.NAME", "name": "Video Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Brand Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.DESCRIPTION", "name": "Video Brand Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Brand Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.WIKIURL", "name": "Video Brand Wiki URL", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Wiki URL", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "WIKIURL", "data_length": 200, "description": "Brand Wiki URL", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.APPEARANCES", "name": "Video Brand Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Brand Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.SEEN.DURATION.RATIO", "name": "Video Brand Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Brand Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "name": "Speeches", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 116, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.ID", "name": "SpeechText Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "SpeechText Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "ID", "data_length": 40, "description": "SpeechText Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXT", "name": "Speech Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Text", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXT", "data_length": 1000, "description": "Speech Text", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXTTYPE", "name": "Speech Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXTTYPE", "data_length": 40, "description": "Speech Type", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.START TIME", "name": "Speech Start Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Start Time", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "START_TIME", "data_length": 40, "description": "Speech Start Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.END TIME", "name": "Speech End Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech End Time", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "END_TIME", "data_length": 40, "description": "Speech End Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "name": "Speakers", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 122, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.ID", "name": "Speaker Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "ID", "data_length": 40, "description": "Speaker Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.NAME", "name": "Speaker Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "NAME", "data_length": 100, "description": "Speaker Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.APPEARANCES", "name": "Speaker Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "APPEARANCES", "data_length": 0, "description": "Speaker Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.FIELDGROUP.LOCALASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200057, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1239, "metadata_element_list": [{"id": "FERRERO.FIELD.COUNTRY", "name": "LOCAL COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "LOCAL COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USER", "name": "USER", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "USER", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_USER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.ASSOCIATION", "name": "TYPE OF ASSOCIATION", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "TYPE OF ASSOCIATION", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_ASSOCIATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.VALUE", "name": "VALUE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "VALUE", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_VALUE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "CG.CATEGORY.FADEL ASSET INFORMATION", "name": "Rights Asset Information", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200064, "metadata_element_list": [{"id": "CG.FIELD.RIGHTS MANAGED", "name": "Fadel IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fadel IP Rights", "enabled": true, "options": "", "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_RIGHTS_MANAGED_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGED", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.NEEDS RIGHTS MANAGEMENT", "name": "Needs Rights Management", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "10", "field_value": {"type": "string", "value": "N"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Needs Rights Management", "enabled": true, "options": "", "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_NEEDS_RIGHTS_MANAGEMENT_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "NEEDS_RIGHTS_MANAGEMENT", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.RIGHTS MANAGEMENT DESCRIPTION", "name": "Rights Management Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Rights Management Description", "enabled": true, "options": "", "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGEMENT_DESCRIPTION", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.RIGHTS MANAGEMENT STATUS", "name": "Rights Management Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Rights Management Status", "enabled": true, "options": "", "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_RIGHTS_MANAGEMENT_STATUS_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGEMENT_STATUS", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.FORCE SYNC", "name": "Force Sync", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Force Sync", "enabled": true, "options": "", "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_FORCE_SYNC_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "FORCE_SYNC", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.LAST SYNC TIME", "name": "Date of last data sync", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date of last data sync", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "LAST_SYNC_TIME", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "CG.CATEGORY.FADEL RIGHTS INFORMATION", "name": "Rights Information", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200065, "metadata_element_list": [{"id": "CG.TABLE.RIGHTS", "name": "Rights", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1256, "metadata_element_list": [{"id": "CG.FIELD.RIGHT TERRITORIES", "name": "Territory", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Territory", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "TERRITORY", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT USES", "name": "Use", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Use", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "USAGE", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT IN DATE", "name": "In Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "In Date", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "IN_DATE", "data_length": 10, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT OUT DATE", "name": "Out Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Out Date", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "OUT_DATE", "data_length": 10, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "saved_values_behavior_mode": 0}]}]}, {"id": "CG.CATEGORY.FADEL AGREEMENTS AND PARTIES", "name": "Agreements and Parties", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200067, "metadata_element_list": [{"id": "CG.TABLE.PARTIES.AGREEMENTS VW", "name": "Customized Table Parties and Agreements", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1258, "metadata_element_list": [{"id": "CG.FIELD.AGREEMENT NUMBER VW", "name": "Agreement Number ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Number ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_NUMBER", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT DESCRIPTION VW", "name": "Agreement Description ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Description ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_DESCRIPTION", "data_length": 2000, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT START DATE VW", "name": "Agreement Start Date ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Start Date ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_START_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT END DATE VW", "name": "Agreement End Date ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement End Date ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_END_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY NAME VW", "name": "Party Name ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Name ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_NAME", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY ROLE VW", "name": "Party Role ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Role ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_ROLE", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY EMAIL ADDRESS VW", "name": "Party Email Address ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Email Address ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_EMAIL_ADDRESS", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY PHONE NUMBER VW", "name": "Party Phone Number ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Phone Number ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_PHONE_NUMBER", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PRIMARY PARTY CONTACT VW", "name": "Primary Party Contact ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Primary Party Contact ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PRIMARY_PARTY_CONTACT", "data_length": 200, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 8, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}], "has_multilingual_fields": false}, "mime_type": "image/jpeg", "path_list": [{"parents": [{"id": "d4d9835db002b9992125246f2abb7117c99ab016", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "d4d9835db002b9992125246f2abb7117c99ab016", "sequence_number": 0}, {"id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "name": "MASTER CAMP FER ROCHER 12.01.2", "container_state": "NORMAL", "original_uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "sequence_number": 0}, {"id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "name": "01. DE - Rocher ", "container_state": "NORMAL", "original_uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "sequence_number": 0}, {"id": "091216b59cad7f1ea815164c26db27e350c54023", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "sequence_number": 0}, {"id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "name": "01. Rocher", "container_state": "NORMAL", "original_uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "sequence_number": 0}, {"id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "name": "01. Ferrero Rocher", "container_state": "NORMAL", "original_uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "sequence_number": 0}, {"id": "93b0968611de11160ed068afeb9930b9965bd5ff", "name": "03. Premium Chocolate", "container_state": "NORMAL", "original_uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "sequence_number": 0}], "complete": true, "sequence_number": 2, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "sequence_number": 0}, {"id": "4b05a895330aa2fb6046f59731aba5dd93858431", "name": "LOCADAPLOCCOMM - FER ROCHER 4", "container_state": "NORMAL", "original_uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "sequence_number": 0}, {"id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "name": "25-26", "container_state": "NORMAL", "original_uoi_id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "sequence_number": 0}, {"id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "name": "02. Campaign", "container_state": "NORMAL", "original_uoi_id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "sequence_number": 0}, {"id": "f31042cfc487f066486c46527c076b8ee6618ceb", "name": "01. Standard", "container_state": "NORMAL", "original_uoi_id": "f31042cfc487f066486c46527c076b8ee6618ceb", "sequence_number": 0}, {"id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "name": "02. Sweden", "container_state": "NORMAL", "original_uoi_id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "sequence_number": 0}, {"id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "name": "SCANDINAVIA", "container_state": "NORMAL", "original_uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "sequence_number": 0}, {"id": "f2649309eb916c5c25bb309e3db061042c3eecca", "name": "01. MC - Rocher", "container_state": "NORMAL", "original_uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "sequence_number": 0}, {"id": "091216b59cad7f1ea815164c26db27e350c54023", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "sequence_number": 0}, {"id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "name": "01. Rocher", "container_state": "NORMAL", "original_uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "sequence_number": 0}, {"id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "name": "01. Ferrero Rocher", "container_state": "NORMAL", "original_uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "sequence_number": 0}, {"id": "93b0968611de11160ed068afeb9930b9965bd5ff", "name": "03. Premium Chocolate", "container_state": "NORMAL", "original_uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "d4d9835db002b9992125246f2abb7117c99ab016", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "d4d9835db002b9992125246f2abb7117c99ab016", "sequence_number": 0}, {"id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "name": "MASTER CAMP FER ROCHER 12.01.2", "container_state": "NORMAL", "original_uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "sequence_number": 0}, {"id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "name": "01. DE - Rocher ", "container_state": "NORMAL", "original_uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "sequence_number": 0}, {"id": "bfbc248a12a4bf0382406620f0d9ec41ff42e35e", "name": "01. Ferrero Rocher", "container_state": "NORMAL", "original_uoi_id": "bfbc248a12a4bf0382406620f0d9ec41ff42e35e", "sequence_number": 0}, {"id": "3d7debea6815ae46c9598191b1c645007666292a", "name": "03 . Premium Chocolate", "container_state": "NORMAL", "original_uoi_id": "3d7debea6815ae46c9598191b1c645007666292a", "sequence_number": 0}, {"id": "c0bb10be2b8f96ee4d27a2dfb7e0d03de68cf114", "name": "DE", "container_state": "NORMAL", "original_uoi_id": "c0bb10be2b8f96ee4d27a2dfb7e0d03de68cf114", "sequence_number": 0}, {"id": "b124e1ed196028bdd0e2c093e28078ca8d9ad462", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "b124e1ed196028bdd0e2c093e28078ca8d9ad462", "sequence_number": 0}, {"id": "68ce80e8c8a30badb82dabfd823886a6fa6fe309", "name": "Y - Geography", "container_state": "NORMAL", "original_uoi_id": "68ce80e8c8a30badb82dabfd823886a6fa6fe309", "sequence_number": 0}], "complete": true, "sequence_number": 2, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "sequence_number": 0}, {"id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "name": "Read Only", "container_state": "NORMAL", "original_uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "sequence_number": 0}, {"id": "23b155c32d5c6142914b41458234c100812bbec8", "name": "Oliver", "container_state": "NORMAL", "original_uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "sequence_number": 0}, {"id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "name": "Z - Exchange", "container_state": "NORMAL", "original_uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}], "creator_id": "1003", "asset_state": "NORMAL", "checked_out": false, "folder_path": "", "content_size": 18093, "content_type": "BITMAP", "content_state": "NORMAL", "date_imported": "2026-01-14T14:23:41.747+01:00", "import_job_id": 225736, "subscribed_to": false, "collection_ids": [], "latest_version": true, "legacy_model_id": 116, "content_editable": true, "import_user_name": "bizAdmin", "date_last_updated": "2026-01-14T14:26:40.677+01:00", "metadata_model_id": "ECOMMERCE", "original_asset_id": "b5e69f3efdd81cd3a604708ed10c55a466d68b0e", "rendition_content": {"preview_content": {"id": "1b3fb8ad25ac04b3ab82c8cbd1653d097e73d19b", "url": "/otmmapi/v6/renditions/1b3fb8ad25ac04b3ab82c8cbd1653d097e73d19b", "name": "download-S.png", "width": 257, "height": 196, "mime_type": "image/png", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "PREVIEW", "content_path": "data\\\\repository\\\\screen\\\\vol0\\\\186\\\\download-S_1b3fb8ad25ac04b3ab82c8cbd1653d097e73d19b.png", "content_size": 127896, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "thumbnail_content": {"id": "378e6172d0245c0bb5e0a7cb599e4fa68a1a8b3e", "url": "/otmmapi/v6/renditions/378e6172d0245c0bb5e0a7cb599e4fa68a1a8b3e", "name": "download-T.png", "width": 257, "height": 196, "mime_type": "image/png", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "THUMBNAIL", "content_path": "data\\\\repository\\\\thumb\\\\vol0\\\\201\\\\download-T_378e6172d0245c0bb5e0a7cb599e4fa68a1a8b3e.png", "content_size": 127896, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_content_info": {"master_content": {"id": "e39e7d38b7abac1f67523cf4e933a2abc03ed232", "url": "/otmmapi/v6/renditions/e39e7d38b7abac1f67523cf4e933a2abc03ed232", "name": "download.jpg", "width": 257, "height": 196, "mime_type": "image/jpeg", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\227\\\\download_e39e7d38b7abac1f67523cf4e933a2abc03ed232.jpg", "content_size": 18093, "unit_of_size": "BYTES", "content_checksum": "170a85265b7055a13a6495204a06bb15", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_state_user_id": "1003", "master_content_info": {"id": "e39e7d38b7abac1f67523cf4e933a2abc03ed232", "url": "/otmmapi/v6/renditions/e39e7d38b7abac1f67523cf4e933a2abc03ed232", "name": "download.jpg", "width": 257, "height": 196, "mime_type": "image/jpeg", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\227\\\\download_e39e7d38b7abac1f67523cf4e933a2abc03ed232.jpg", "content_size": 18093, "unit_of_size": "BYTES", "content_checksum": "170a85265b7055a13a6495204a06bb15", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "delivery_service_url": "https://ppr.dam.ferrero.com/adaptivemedia/rendition?id=b5e69f3efdd81cd3a604708ed10c55a466d68b0e", "product_associations": false, "security_policy_list": [{"id": 1594, "name": "Security Policy_ Default Ecom Upload", "status": "NORMAL", "created_by": "1001", "create_date": "2022-05-24T16:22:28.927+02:00", "description": "Security Policy_ Default Ecom Upload", "ownership_type": "PUBLIC"}, {"id": 5467, "name": "Marketing Viewer", "status": "NORMAL", "created_by": "1003", "create_date": "2023-10-06T16:52:07.297+02:00", "description": "Marketing Viewer", "ownership_type": "PUBLIC"}], "thumbnail_content_id": "378e6172d0245c0bb5e0a7cb599e4fa68a1a8b3e", "content_state_user_id": "1003", "content_state_user_name": "OTMM BusinessAdmin", "asset_lock_state_user_id": "1003", "metadata_state_user_name": "OTMM BusinessAdmin", "access_control_descriptor": {"permissions_map": {"entry": [{"key": "text.securityPolicy.permission.Custom04Permission", "value": true}, {"key": "text.securityPolicy.permission.ContentEditPermission", "value": true}, {"key": "text.securityPolicy.permission.AssetViewPermission", "value": true}, {"key": "text.securityPolicy.permission.ProjectViewPermission", "value": true}, {"key": "text.securityPolicy.permission.MembershipEditPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom03Permission", "value": true}, {"key": "text.securityPolicy.permission.MetaDataEditPermission", "value": true}, {"key": "text.securityPolicy.permission.EditParentsPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom02Permission", "value": true}, {"key": "text.securityPolicy.permission.ExportPermission", "value": true}, {"key": "text.securityPolicy.permission.SummaryViewPermission", "value": true}, {"key": "text.securityPolicy.permission.PreviewViewPermission", "value": true}, {"key": "text.securityPolicy.permission.SubscribePermission", "value": true}, {"key": "text.securityPolicy.permission.DeleteAssetPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom01Permission", "value": true}]}}, "content_lock_state_user_id": "1003", "asset_state_last_update_date": "2026-01-14T14:26:40.677+01:00", "content_lock_state_user_name": "bizAdmin", "metadata_lock_state_user_name": "bizAdmin", "content_state_last_update_date": "2026-01-14T14:23:42.047+01:00", "inherited_metadata_collections": [{"container_id": "d4d9835db002b9992125246f2abb7117c99ab016", "container_name": "05. Final Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "d4d9835db002b9992125246f2abb7117c99ab016", "originator_id": "d4d9835db002b9992125246f2abb7117c99ab016", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "05. Final Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "container_name": "MASTER CAMP FER ROCHER 12.01.2", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "MASTER CAMP FER ROCHER 12.01.2"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000783"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "MASTER_CAMP_FER_ROC_CQ_LG_DE_PRE_0000783"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local comm on global brands"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Master Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Master Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2026/2027"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "B1"}, "display_value": "Master campaign ready for re-mastering", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ADDITIONALAPPROVER", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.LICENSING", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "d0ef653291e269a7d1ddf0ebfedd1c6ad70b1c59"}, "metadata_element": {"id": "FERRERO.FIELD.LICENSING", "name": "Campaign License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "LICENSING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}}]}, {"container_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "container_name": "01. DE - Rocher ", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "bb01cf85444107f22341d2b88421f0cbaade0bf9"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E006"}, "display_value": "GERMANY", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Local DE Editable Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Premium Chocolate Local DE Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "8f497ce53d23899c7c09aa5a7ca69c9f55c3a62d"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E64"}, "display_value": "GERMANY", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "ca70a6d55e4277ecbef2a01a593c614501cbcf74"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "3e9d669ab1047383d0416ba40af75744148c94c8"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0e241fc386dcd91baa31a409e297169fe4a352c2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "2e3e0f2be0e487b540d9b63cb8c0e9ed9c6b1bb6"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "359c98154f230a60acc6b4eb048e129411d7a778"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "b3698893fc223e8371f4e4c0d560d0536c724a09"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "e92f9f10c0c29dda8261218c2c72a0baa66472f2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "15dff42c3b196ba3ae5b3c2ea33f00e347e6f654"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Extended Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0ae044cd9dddf86cd9406c9edc3996b18c430be0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "name": "AMMC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AMMC", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LOCAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "7806fed6127b50c21f6b03e1f7b63f3dedc1e8d1"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "RMMC", "values": [{"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "4c8a2d6e178638bfacfeaf3f7f6f1000304693a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "name": "Product Asset Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Product Asset Approval Ferrero Rocher Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Asset Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCT_ASSET_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local comm on global brands"}, "display_value": "Local comm on global brands", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "5a1ae26558efdc03336c0df838dd9e7c2a51c687"}, "metadata_element": {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "name": "Market Unit", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market Unit", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETUNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "MARKET_UNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "091216b59cad7f1ea815164c26db27e350c54023", "container_name": "EU", "container_type_id": "GEOGRAPHYLOCAL", "container_type_name": "L4 - GEOGRAPHY LOCAL", "inherited_metadata_values": [{"id": "FERRERO.MARKET.FOLDER.GLOBAL", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "4c4d4bf36bf8b1ace55f990e78d6332a9cb20990"}, "metadata_element": {"id": "FERRERO.MARKET.FOLDER.GLOBAL", "name": "Global/Local (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "LOCAL"}, "display_value": "Local", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local (Marketing)", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "GLOBALLOCAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_AREA", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "3dc200c993ab8263952dc6da1498026f615f45dd"}, "metadata_element": {"id": "MARKETING_AREA", "name": "AREA", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E010"}, "display_value": "EUROPE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "AREA", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "AREA", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "AREA", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "dc7749c3e113ec9e0b9e9a3840ea55673ca5e49f"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "f2d658a3829c2ea158ae70a4b4e7928bcf88f8e2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "972d0258a82de85672bd84d8af68cdb67ad3d3ca"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "1212505ad3fe4c9d7458568f3d95aeb4c4e5c37e"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "9d1dfdef55ff7a3eb03552988ddf729c7a0f5107"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "54f006eeb366121a29ee98da33d437615dcd34e0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "1fd8802010e30d44cebb2f3eb090b12ac550f97d"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "8b6e1d8f7dc3c4671cfc11a2914d838ca3ee3f3b"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "be0dc9a87262ee7fd165237b531ba3b7aa93a260"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "2f99f0f0f9e43fb34df9222c8b73a86fb78e473e"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "container_name": "01. Rocher", "container_type_id": "GLOBALBRAND", "container_type_name": "L3 - BRAND", "inherited_metadata_values": [{"id": "FERRERO.TABULAR.NEW.BRAND", "tabular": true, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "9bb1c183135f5240f09132aef59c4ea48c762381"}, "metadata_element": {"id": "FERRERO.TABULAR.NEW.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF04"}, "display_value": "ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND (Marketing)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF04"}, "display_value": "ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "BRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TABULAR_BRAND", "column_name": "BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.NEW.BRAND", "parent_table_name": "BRAND (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "tabular": true, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "a37b13c02cba799378211e17b73234a0d836f9b6"}, "metadata_element": {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "CQ"}, "display_value": "FERRERO ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND(HARMONIZED)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "CQ"}, "display_value": "FERRERO ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.HARMONIZEDBRAND", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_HARMONIZEDBRAND", "column_name": "HARMONIZEDBRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.HARMONIZEDBRAND", "parent_table_name": "BRAND(HARMONIZED)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "AGENCY.COLLABORATION", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "183d6e0957a9940f9b18ef44f46d957802b63397"}, "metadata_element": {"id": "AGENCY.COLLABORATION", "name": "Agency collaboration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency collaboration", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "AGENCY_COLLABORATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "AGENCY.SHARING", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "d0e2b725ddfdc452cc3ba750bbe8ec059c6b01ba"}, "metadata_element": {"id": "AGENCY.SHARING", "name": "Agency sharing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency sharing", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "AGENCY_SHARING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "CONTENT.SCALING.AGENCYNAME", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "f9dfa695cc5ef8cd3fafada4e44cfdaa1522d58a"}, "metadata_element": {"id": "CONTENT.SCALING.AGENCYNAME", "name": "Content Scaling agency name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Scaling agency name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENTSCALING_AGENCYNAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "container_name": "01. Ferrero Rocher", "container_type_id": "GLOBALSUBCATEGORY", "container_type_name": "L2 - SUBCATEGORY", "inherited_metadata_values": [{"id": "MARKETING_SUBCATEGORY", "tabular": false, "value_id": {"uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "originator_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "inherited_field_id": "3000ad591e09b5c75f85fc2ccbb9ebeb31b3ab78"}, "metadata_element": {"id": "MARKETING_SUBCATEGORY", "name": "SUBCATEGORY", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Mart-Ferrero-Rocher"}, "display_value": "Ferrero Rocher", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "SUBCATEGORY", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "SUBCATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "SUBCATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "tabular": true, "value_id": {"uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "originator_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "inherited_field_id": "2c751ce760d88c0e271925ea5149348106944bfa"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Subcategory Owner", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_SUBCATEGORY_OWNER_TM", "column_name": "SUBCATEGORY_OWNER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "parent_table_name": "Subcategory Owner", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "container_name": "03. Premium Chocolate", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "originator_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E06"}, "display_value": "PREMIUM CHOCOLATE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "originator_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final Approver BPS ", "values": [{"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "container_name": "00. Master Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "originator_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00. Master Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "container_name": "LOCADAPLOCCOMM - FER ROCHER 4", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "LOCADAPLOCCOMM - FER ROCHER 4"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000794"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "LOCADAPLOCCOMM_-__CQ_LAL_MLT_PRE_0000794"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local adaptation of local comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Master Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000783"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Master Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "DK"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "DK"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "SE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "FI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "NO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "IS"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "GL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2025/2026"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2797"}, "display_value": "Owner, Asset (AssetownerLoG, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2797"}, "display_value": "Owner, Asset (AssetownerLoG, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2797"}, "display_value": "Owner, Asset (AssetownerLoG, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2797"}, "display_value": "Owner, Asset (AssetownerLoG, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "A1"}, "display_value": "Local Campaign ready for localization", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ADDITIONALAPPROVER", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.LICENSING", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "d0ef653291e269a7d1ddf0ebfedd1c6ad70b1c59"}, "metadata_element": {"id": "FERRERO.FIELD.LICENSING", "name": "Campaign License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "LICENSING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}}]}, {"container_id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "container_name": "25-26", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "originator_id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "25-26"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "container_name": "02. Campaign", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "originator_id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "02. Campaign"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "f31042cfc487f066486c46527c076b8ee6618ceb", "container_name": "01. Standard", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "f31042cfc487f066486c46527c076b8ee6618ceb", "originator_id": "f31042cfc487f066486c46527c076b8ee6618ceb", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "01. Standard"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "container_name": "02. Sweden", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "originator_id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "02. Sweden"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "container_name": "SCANDINAVIA", "container_type_id": "GLOBALMARKETUNIT", "container_type_name": "L6 - MARKET UNIT", "inherited_metadata_values": [{"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "24a6615bcce9adc5a098c76c29b8e8baba61a9a3"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E22"}, "display_value": "SCANDINAVIA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "13063087b81ea172db42e69ed8e8fa013cd5bfe0"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Local SCANDINAVIA Editable Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "bf49ba2a40d0d0dccee4d5de7381659b106dd89a"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Premium Chocolate Local SCANDINAVIA Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "8e4d311466783d8215a38b08bee3cb2b3bfcf40f"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "9e88b5726590ab30642999a28a301e3fbcebc762"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "name": "Published Security Policy - Restricted Visibility", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Security Policy - Restricted Visibility", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_VISIBILITY_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "3c0070e420882e3e18f6097811cb60a67239003b"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local SCANDINAVIA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "7f3c1933b61e900457ea6e2aab750303882873d4"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "b0c960759e48c0fcdcb650417179a614da95e866"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Local SCANDINAVIA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "6f603fcc63415e266dc35cf2314d31357a2966bf"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "3c12728b06ecfafeeb74482ea7b7296b180765f9"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "dc9b8ffa0591a1b2956c07fa5dc10ff477c84f4e"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "495fa4f08769a021cfa907dfb7a903fade9bd19a"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "e3b647e172a89e1e7cbdd2964faff1bca8dcf520"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "6870cca056b54cd400a9fbd4fe75513e69cedcdd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "RMMC", "values": [{"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "container_name": "01. MC - Rocher", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "bb01cf85444107f22341d2b88421f0cbaade0bf9"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E023"}, "display_value": "MULTI COUNTRY EUROPE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "8f497ce53d23899c7c09aa5a7ca69c9f55c3a62d"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E22"}, "display_value": "SCANDINAVIA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "ca70a6d55e4277ecbef2a01a593c614501cbcf74"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "3e9d669ab1047383d0416ba40af75744148c94c8"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "0e241fc386dcd91baa31a409e297169fe4a352c2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "2e3e0f2be0e487b540d9b63cb8c0e9ed9c6b1bb6"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "359c98154f230a60acc6b4eb048e129411d7a778"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "b3698893fc223e8371f4e4c0d560d0536c724a09"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "e92f9f10c0c29dda8261218c2c72a0baa66472f2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "15dff42c3b196ba3ae5b3c2ea33f00e347e6f654"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "0ae044cd9dddf86cd9406c9edc3996b18c430be0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "name": "AMMC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AMMC", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LOCAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "7806fed6127b50c21f6b03e1f7b63f3dedc1e8d1"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "RMMC", "values": [{"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "4c8a2d6e178638bfacfeaf3f7f6f1000304693a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "name": "Product Asset Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Asset Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCT_ASSET_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of local comm"}, "display_value": "Local adaptation of local comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of local comm"}, "display_value": "Local adaptation of local comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "5a1ae26558efdc03336c0df838dd9e7c2a51c687"}, "metadata_element": {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "name": "Market Unit", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market Unit", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETUNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "MARKET_UNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "container_name": "Read Only", "container_type_id": "L3 - Agency Structure", "container_type_name": "L3 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "55530f721f18c847e35d7c828edf53461b5014b0"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "330bb6f68316aab5c45f9fe34e047cce573c67cc"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "name": "Agency Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "AGENCY_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "e30e90d694f9935d4c15c4c78891beed8853a272"}, "metadata_element": {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "name": "Published Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "PUBLISHED_ASSET_SP_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "23b155c32d5c6142914b41458234c100812bbec8", "container_name": "Oliver", "container_type_id": "L2 - Agency Structure", "container_type_name": "L2 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.AGENCY", "tabular": false, "value_id": {"uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "originator_id": "23b155c32d5c6142914b41458234c100812bbec8", "inherited_field_id": "48fcbc397986aca5bb8722a95197dd0a46f19b4e"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_AGENCY", "column_name": "AGENCY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "container_name": "Z - Exchange", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "YY"}, "display_value": "AGENCIES", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Final Approver BPS ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}], "asset_lock_state_last_update_date": "2026-01-14T14:27:01.9+01:00", "content_lock_state_last_update_date": "2026-01-14T14:23:42.103+01:00"} \N \N active f \N \N 2026-01-16 20:41:18.90633 2026-01-16 20:41:18.90633 2026-01-16 20:41:18.90633 13 ij0ygz 85a99b184653d78906eccc8934a67e5ed4bcd9e9 images .jpg \N image/jpeg \N \N \N \N \N \N \N \N \N \N \N \N \N C000000783 4b05a895330aa2fb6046f59731aba5dd93858431 C000000794 c61cb01650b9ca8e8a9e27f9d47a5f8273753ed9 Box File ID: 2105209473028\nBox URL: https://app.box.com/file/2105209473028\nDAM Asset ID: 85a99b184653d78906eccc8934a67e5ed4bcd9e9 {"name": "images.jpg", "links": {"links": [], "source_id": "85a99b184653d78906eccc8934a67e5ed4bcd9e9"}, "locked": false, "deleted": false, "expired": false, "version": 1, "asset_id": "85a99b184653d78906eccc8934a67e5ed4bcd9e9", "metadata": {"id": "ECOMMERCE", "name": "Marketing Asset", "type": "com.artesia.metadata.MetadataModel", "legacy_id": 116, "metadata_element_list": [{"id": "FERRERO.CATEGORY.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200054, "metadata_element_list": [{"id": "FERRERO.FIELD.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Status", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.CONTENT_STATUS", "edit_type": "COMBO_NOTNULL", "facetable": false, "searchable": true, "table_name": "FERRERO_CONTENT_STATUS_MD", "column_name": "CONTENT_STATUS", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9215, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRER.CATEGORY.ASSET_INFO", "name": "Asset Info", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200022, "metadata_element_list": [{"id": "FERRERO.FIELD.MKTG.ASSET TYPE", "name": "Asset Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.ASSETTYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.FISCAL YEAR", "name": "Release Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2026/2027"}, "display_value": "2026/2027", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Release Fiscal Year", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_DOMAIN_FISCAL_YEAR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "FISCAL__YEAR", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "name": "Main Languages", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1210, "metadata_element_list": [{"id": "MAIN_LANGUAGES", "name": "MAIN LANGUAGES", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "MAIN LANGUAGES", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MAIN LAGUAGES_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MAIN_LANGUAGE_TABLE", "column_name": "MAIN_LANGUAGE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "parent_table_name": "Main Languages", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.ASSET DESCRIPTION", "name": "Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Description", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "DESCR", "data_length": 249, "description": "Descriptive information", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.FLAVOUR", "name": "Flavour", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Flavour", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.FLAVOUR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FLAVOUR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.SIZE", "name": "Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Size", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.SIZE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SIZE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1241, "metadata_element_list": [{"id": "FERRERO.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Compliance", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ASSETCOMPLIANCE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_COMPLIANCE", "column_name": "ASSET_COMPLIANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "parent_table_name": "Asset Compliance", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.TAG DETAILS", "name": "Tag Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 118, "metadata_element_list": [{"id": "ARTESIA.FIELD.TAG", "name": "Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "food", "field_value": {"type": "string", "value": "food"}, "display_value": "food", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Tag", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "food", "field_value": {"type": "string", "value": "food"}, "display_value": "food", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "slot machine", "field_value": {"type": "string", "value": "slot machine"}, "display_value": "slot machine", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.TAGS", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "OTMM_TAGS", "column_name": "TAG", "data_length": 80, "description": "Tag", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG CONFIDENCE", "name": "Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 83.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Confidence", "values": [{"value": {"type": "decimal", "value": 83.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 72.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Confidence", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG TYPE", "name": "Tag Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Tag Type", "values": [{"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "TAG_TYPE", "data_length": 10, "description": "Tag Type", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED BY", "name": "Associated By", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Associated By", "values": [{"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_BY", "data_length": 10, "description": "Associated By", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED DATE", "name": "Associated Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-14T14:24:31.323+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Associated Date", "values": [{"value": {"type": "dateTime", "value": "2026-01-14T14:24:31.323+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2026-01-14T14:24:31.323+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_DATE", "data_length": 10, "description": "Associated Date", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.STATE", "name": "Global/Local", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "GLOBAL"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO_NOTNULL", "facetable": true, "searchable": true, "table_name": "FERRERO_IC_ASSET_DETAILS", "column_name": "ASSET_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.ASPECT RATIO", "name": "Aspect Ratio (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio (Marketing)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASPECT_RATIO", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASPECT_RATIO", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "name": "Tag (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1222, "metadata_element_list": [{"id": "MARKETING_TAG", "name": "Marketing Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Marketing Tag", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.DOMAIN.TAG", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TAG_MARKET", "column_name": "TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "parent_table_name": "Tag (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.TAGS", "name": "Auto-Generated Tags", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Auto-Generated Tags", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "AUTO_GENERATED_TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CERTIFIER", "name": "Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approver", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.MARKETING.FIELD.APPROVAL DATE", "name": "Approval__Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approval__Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.LEGAL APPROVAL DATE", "name": "Legal Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CERTIFIER", "name": "IA&CC Certifier", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Certifier", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CC APPROVAL DATE", "name": "IA&CC Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "name": "Extended Approval", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1230, "metadata_element_list": [{"id": "FERRERO.FIELD.EXTENDED.APPROVAL", "name": "Extended Approval required by:", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended Approval required by:", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COMMENTS", "name": "Comment", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comment", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "COMMENTS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.DATE", "name": "Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USERS", "name": "User ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "User ID", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "USERS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXTENDED.JOBID", "name": "Extended JobID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended JobID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.MIGRATION.INDEX", "name": "Migration Index", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Migration Index", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MIGRATION.INDEX", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MIGRATION_INDEX", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "FERRERO_MARKET_MARKETING_CREATOR", "name": "Marketing Creator", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Marketing Creator", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.CREATOR", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MARKETING_CREATOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "ARTESIA.FIELD.IS LATEST VERSION", "name": "Is Latest Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Y"}, "display_value": "Yes", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Is Latest Version", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.YES_NO", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "IS_LATEST_VERSION", "data_length": 1, "description": "Is this the latest version? (Y/N)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET VERSION", "name": "Asset Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 1}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Version", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "INTEGER", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "VERSION", "data_length": 12, "description": "Version number of asset", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET_ID", "name": "Asset ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "85a99b184653d78906eccc8934a67e5ed4bcd9e9"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset ID", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "LOGICAL_UOI_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.ECOMMERCE STATUS", "name": "Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "PUBLISHED"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Status", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "ASSET_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CREATOR", "name": "Uploaded by", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Uploaded by", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_USER_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.FIELD.CREATION DATE", "name": "Upload Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-14T14:23:41.743+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Upload Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_DT", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.ASSET NAME", "name": "Asset Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "images.jpg"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Name", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "description": "Original name of master object", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.CONTENT TYPE", "name": "Content Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "BITMAP"}, "display_value": "Image", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Type", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.CONTENT_TYPES", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "CONTENT_TYPE", "data_length": 8, "description": "Content Type", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.MIME TYPE", "name": "File Extension", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "image/jpeg"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Extension", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_MIME_TYPE", "data_length": 80, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.FILE.SIZE", "name": "File Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "long", "value": 11710}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Size", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "LONG", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_SIZE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP RESOLUTION", "name": "Bitmap Resolution", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 72}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Resolution", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_RESOLUTION", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP WIDTH", "name": "Bitmap Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 225}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Width", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_WIDTH", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP HEIGHT", "name": "Bitmap Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 225}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Height", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_HEIGHT", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "name": "Approval Metadata", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1249, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.DEPARTMENT", "name": "Department", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Department", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "DEPARTMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.CERTIFIER", "name": "Certifier", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Certifier", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL DATE", "name": "Approval Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Approval Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "APPROVAL_DATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.COMMENT", "name": "Comments", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comments", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "COMMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.TYPE OF APPROVAL", "name": "Type of Approval", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Approval", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "TYPE_OF_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL STATUS", "name": "Approval Status", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Approval Status", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "APPROVAL_STATUS", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.SUB JOBID", "name": "Sub Job Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sub Job Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.VIDEO.BIT_RATE", "name": "Bitrate", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitrate", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "BIT_RATE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.EMBEDDED.FIELD.DURATION", "name": "Duration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Duration", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "DURATION_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.ASPECT RATIO", "name": "Aspect Ratio", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "ASPECT_RATIO", "data_length": 30, "displayable": false, "instructions": "ASPECT_RATIO", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME HEIGHT", "name": "Frame Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Height", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_HEIGHT", "data_length": 12, "displayable": true, "instructions": "FRAME_HEIGHT", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME WIDTH", "name": "Frame Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Width", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_WIDTH", "data_length": 12, "displayable": true, "instructions": "FRAME_WIDTH", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.ASPECT.RATIO.POC", "name": "Aspect Ratio(POC)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "1:1"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio(POC)", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASPECT_RATIO_TABLE", "column_name": "ASPECT_RATIO", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "PRODUCT.DETAILS", "name": "Product Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200029, "metadata_element_list": [{"id": "FERRERO.TABLE.EANCODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1208, "metadata_element_list": [{"id": "EAN_CODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "EAN CODE/ 77 CODE", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "EAN.CODE", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "EAN_CODE", "column_name": "EAN_CODE_DESCRIPTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "COUNTRY", "name": "COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "EAN_CODE", "column_name": "COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKETING.ADVANCE.PRODUCT.LINK", "name": "Asset-to-product relation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset-to-product relation", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_MARKETING_ADVANCE_PRODUCT_LINK", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ADVANCE_PRODUCT_LINK", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 10182, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.SUB BRAND", "name": "Sub-Brands", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Sub-Brands", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.SUBBRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "SUB_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT WEIGHT", "name": "Product Weight", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Weight", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_WEIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.CONSUMER UNIT PACKAGING", "name": "Consumer Unit Packaging", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Consumer Unit Packaging", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PACK", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "CONSUMER_UNIT_PACKAGING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.4 DIGIT CODE", "name": "4 Digit Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "4 Digit Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "DIGITCODE", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERREO.ECOM.RETAILER_SPECIFIC_FIELD", "name": "Retailer Specific", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Retailer Specific", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "RETAILER_SPECIFIC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "cascading_group_id": "FERRERO.RETAILER.SPECIFIC", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY START PERIOD", "name": "Asset validity start period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity start period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_STARTING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY END PERIOD", "name": "Asset validity end period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity end period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_ENDING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.ASSET.NAMING.CONVENTION", "name": "Does asset need GS1 naming convention", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Does asset need GS1 naming convention", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASSETNAMINGCONVENTION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_NAMING_CONVENTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9515, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT VIEW", "name": "Product View", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product View", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT VIEW", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_VIEW", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT ANGLE", "name": "Product Angle", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Angle", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT.ANGLE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_ANGLE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT STATE", "name": "Product State", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product State", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT STATE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PROMOTION ID", "name": "Promo ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Promo ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROMO_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.BUSINESS.ASSET TYPE", "name": "Asset Type (eDAM)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Angled view", "field_value": {"type": "string", "value": "angledview"}, "display_value": "ANGLED VIEW", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Type (eDAM)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "OTMM.DOMAIN.OTMM_ASSETTYPE_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_BUSINESS_INFO", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7244, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200048, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.AGENCY NAME", "name": "Agency Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "0000000001"}, "display_value": "ATest", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Agency Name", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.AGENCY_NAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AGENCY_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7336, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.CREATIX", "name": "CreativeX", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200059, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.CREATIVEX", "name": "Confidence", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1245, "metadata_element_list": [{"id": "FERRERO.TAB.FIELD.CREATIVEX", "name": "Platform > Rating (%)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Platform > Rating (%)", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_CREATIVEX", "column_name": "CREATIVEX_NEW", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CREATIVEX", "parent_table_name": "Confidence", "cascading_group_id": "FERRERO.CREATIVEX.CHAR", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.CREATIVEX LINK", "name": "CreativeX Hyperlink", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "CreativeX Hyperlink", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_CREATIVEX", "column_name": "CREATIVE_LINK", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.IP_RIGHTS", "name": "IP Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200046, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.IPRIGHT", "name": "IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IP Rights", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.IPRIGHTS", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IP_RIGHTS", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.BUYOUT", "name": "Touchpoint Scope", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Touchpoint Scope", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.TOTAL_BUYOUT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TOTAL_BUYOUT", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.FERRERO PROPERTY", "name": "Ferrero Property", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Ferrero Property", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.FERRERO_PROPERTY", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FERRERO_PROPERTY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200035, "metadata_element_list": [{"id": "FERRERO.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1209, "metadata_element_list": [{"id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "name": "IP Coverage, Area, Region & Market Unit", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Coverage, Area, Region & Market Unit", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "IPCOVERAGE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "cascading_group_id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHT TYPE", "name": "Copyright Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHT_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.MEDIATYPE", "name": "Media Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Media Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MEDIA_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "MEDIA_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE FROM", "name": "Expiration of Usage - From", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - From", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_FROM", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE TO", "name": "Expiration of Usage - To", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - To", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_TO", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO._DURATION", "name": "IP Duration", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Duration", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "ECOM_DURATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHTTYPE DETAILS", "name": "Copyright Type Details", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type Details", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHTTYPE_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 6, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.MARKET.VID_STAT_RIGHT", "name": "Video & Static Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200047, "metadata_element_list": [{"id": "FERRERO.MARKET.VID_N_STAT", "name": "Video and Static Right", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video and Static Right", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VID_AND_STAT_RIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.VID_STAT_TYPE", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1221, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.TYPE_VID", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Video & Static Right", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TYPE_VID_STAT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_MARKET_TYPE_VID_STAT", "column_name": "TYPE_OF_VIDEO_STATIC_RIGHT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.VID_STAT_TYPE", "parent_table_name": "Type of Video & Static Right", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKET.PROD_COMPANY", "name": "Production House", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Production House", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.PRODUCT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200050, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.LICENSIN", "name": "Licensing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Licensing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSING", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "cascading_group_id": "FERRERO.MARKET.CG.LICENSE", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.SPOT_DETAILS", "name": "Spot Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200049, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.SPOT_VERSION", "name": "Spot Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Version", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_VERSION", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_VERSION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.SPOT_TYPE", "name": "Spot Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_TYPE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.DIRECTOR_NAME", "name": "Director Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Director Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "DIRECTOR_NAME", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VIDEO_POST_PROD_COMPANY", "name": "Video Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VID_POST_PROD_CONTACT", "name": "Video Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_COMPANY", "name": "Audio Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_CONTACT", "name": "Audio Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.BROADCASTER.CODE", "name": "Broadcaster Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Broadcaster Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BROADCASTER_CODE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.TECHNICAL_VALIDATION", "name": "Technical Validation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Technical Validation", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TECHNICAL_VALIDATION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS", "name": "Media Analysis", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1002, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "name": "Categories", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 105, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY NAME", "name": "Category Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "others_"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Category Name", "values": [{"value": {"type": "string", "value": "others_"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "outdoor_"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "text_menu"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "NAME", "data_length": 100, "description": "Category Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY CONFIDENCE", "name": "Category Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 3.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Category Confidence", "values": [{"value": {"type": "decimal", "value": 3.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 0.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 26.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "CONFIDENCE", "data_length": 10, "description": "Category Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES COUNT", "name": "Faces Count", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Faces Count", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACECOUNT", "column_name": "COUNT", "data_length": 10, "description": "Faces Count", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "name": "Face Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 106, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME", "name": "Recognized Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME", "data_length": 2000, "description": "Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME CONFIDENCE", "name": "Recognized Name Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME_CONFIDENCE", "data_length": 10, "description": "Name Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE", "name": "Person Age", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE", "data_length": 10, "description": "Person Age", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE CONFIDENCE", "name": "Person Age Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Person Age Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_CONFIDENCE", "data_length": 10, "description": "Person Age Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER", "name": "Gender", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Gender", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.GENDER", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER", "data_length": 40, "description": "Gender", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER CONFIDENCE", "name": "Gender Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Gender Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER_CONFIDENCE", "data_length": 10, "description": "Gender Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.FACE COORDS", "name": "Face Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "FACE_COORDS", "data_length": 200, "description": "Face Coordinates like postion, height,width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE GROUP", "name": "Person Age Group", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age Group", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.AGE GROUP", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_GROUP", "data_length": 10, "description": "Person Age Group", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "name": "Safe Content", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 107, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONTENT TYPE", "name": "Safe Content Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Safe Content Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENTS", "data_length": 20, "description": "Safe Content Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONFIDENCE", "name": "Content Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Content Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENT_CONFIDENCE", "data_length": 10, "description": "Safe Content Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "name": "Colors", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 108, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.NAME", "name": "Color", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Brown"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Color", "values": [{"value": {"type": "string", "value": "Brown"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "Black"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "NAME", "data_length": 25, "description": "COLOR", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.PROPORTION", "name": "Color Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Color Confidence", "values": [{"is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "PROPORTION", "data_length": 10, "description": "Proportion", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.FOREGROUND", "name": "Foreground Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Brown"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Foreground Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "FOREGROUND", "data_length": 25, "description": "Foreground Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.BACKGROUND", "name": "Background Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Black"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Background Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "BACKGROUND", "data_length": 25, "description": "Background Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.ISBW", "name": "Is Black and White", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "false"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Is Black and White", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "ISBW", "data_length": 10, "description": "Is Black and White", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "name": "Captions", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 109, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION TEXT", "name": "Caption Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Caption Text", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "TEXT", "data_length": 2000, "description": "Caption Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION CONFIDENCE", "name": "Caption Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Caption Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "CAPTION_CONFIDENCE", "data_length": 10, "description": "Caption Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "name": "Image Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 110, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.IMAGE TYPE", "name": "Analysis Image Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Analysis Image Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_IMAGE_TYPE", "column_name": "TYPE", "data_length": 100, "description": "Image Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "parent_table_name": "Image Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.DATE", "name": "Date: Media Analysis", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-14T14:24:31+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date: Media Analysis", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MEDIA_ANALYSIS_DATE", "data_length": 25, "description": "Date Media Analysis was done on the asset.", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR LANGUAGE", "name": "Image Text Language", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "unk"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Image Text Language", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "LANGUAGE", "data_length": 10, "description": "OCR data language", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR TEXT", "name": "Text on Image", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Text on Image", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "TEXT", "data_length": 4000, "description": "OCR Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "name": "Embedded Brand Info", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 119, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.NAME", "name": "Embedded Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Embedded Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Embedded Brand Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.CONFIDENCE", "name": "Embedded Brand Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Embedded Brand Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Embedded Brand Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.COORDINATES", "name": "Embedded Brand Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Embedded Brand Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "COORDINATES", "data_length": 200, "description": "Embedded Brand Coordinates like position, height, width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "HYBRIS.PRODUCT.INFO", "name": "PIM Item Reference", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200027, "metadata_element_list": [{"id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "name": "Hybris Item Reference", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1206, "metadata_element_list": [{"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ID", "name": "Hybris Item ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ID", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT TAG NAME", "name": "Hybris Assignment Label", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Assignment Label", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_TAG_NAME", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ATTRIBUTE NAME", "name": "Hybris Attribute Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Attribute Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ATTRIBUTE_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT CATALOG NAME", "name": "Hybris Catalog Mnemonic", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Catalog Mnemonic", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_CATALOG_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT PK", "name": "Hybris Item PK", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item PK", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_PK", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.SYSTEM ID", "name": "Hybris System ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris System ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "SYSTEM_ID", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.ASSIGNED", "name": "Assigned", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Assigned", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "ASSIGNED", "column_name": "ASSIGNED", "data_length": 38, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PIM TYPE", "name": "PIM Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "PIM Type", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_PIM_TYPE", "column_name": "PIM_TYPE", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS VIDEO", "name": "Media Analysis Video", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1003, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "name": "Labels", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 113, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.ID", "name": "Label Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "ID", "data_length": 40, "description": "Label Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.NAME", "name": "Label Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "NAME", "data_length": 40, "description": "Label Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.APPEARANCES", "name": "Label Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "APPEARANCES", "data_length": 0, "description": "Label Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "name": "Sentiments", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 114, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.ID", "name": "Sentiment Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "ID", "data_length": 40, "description": "Sentiment Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.NAME", "name": "Sentiment Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "NAME", "data_length": 40, "description": "Sentiment Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.APPEARANCES", "name": "Sentiment Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "APPEARANCES", "data_length": 0, "description": "Sentiment Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.SEEN.DURATION.RATIO", "name": "Sentiment Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Sentiment Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "name": "Keywords", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 115, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.ID", "name": "Keyword Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "ID", "data_length": 40, "description": "Keyword Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.NAME", "name": "Keyword Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "NAME", "data_length": 40, "description": "Keyword Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.APPEARANCES", "name": "Keyword Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Keyword Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "name": "Faces", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 111, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.ID", "name": "Face Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "ID", "data_length": 40, "description": "Face Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.NAME", "name": "Face Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "NAME", "data_length": 40, "description": "Face Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.TITLE", "name": "Face Title", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Title", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "TITLE", "data_length": 249, "description": "Face Title", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.DESCRIPTION", "name": "Face Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Face Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.APPEARANCES", "name": "Face Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "APPEARANCES", "data_length": 0, "description": "Face Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SPEAKER.FACE.ID", "name": "Video Speaker Object Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Speaker Object Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "THUMBNAIL_OBJECT_ID", "data_length": 40, "description": "Video Speaker Object Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.SEEN.DURATION.RATIO", "name": "Face Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "SEEN_DURATION_RATIO", "data_length": 20, "description": "Face Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "name": "Brands", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 112, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.ID", "name": "Video Brand Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "ID", "data_length": 40, "description": "Brand Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.NAME", "name": "Video Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Brand Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.DESCRIPTION", "name": "Video Brand Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Brand Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.WIKIURL", "name": "Video Brand Wiki URL", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Wiki URL", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "WIKIURL", "data_length": 200, "description": "Brand Wiki URL", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.APPEARANCES", "name": "Video Brand Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Brand Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.SEEN.DURATION.RATIO", "name": "Video Brand Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Brand Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "name": "Speeches", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 116, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.ID", "name": "SpeechText Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "SpeechText Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "ID", "data_length": 40, "description": "SpeechText Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXT", "name": "Speech Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Text", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXT", "data_length": 1000, "description": "Speech Text", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXTTYPE", "name": "Speech Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXTTYPE", "data_length": 40, "description": "Speech Type", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.START TIME", "name": "Speech Start Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Start Time", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "START_TIME", "data_length": 40, "description": "Speech Start Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.END TIME", "name": "Speech End Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech End Time", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "END_TIME", "data_length": 40, "description": "Speech End Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "name": "Speakers", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 122, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.ID", "name": "Speaker Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "ID", "data_length": 40, "description": "Speaker Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.NAME", "name": "Speaker Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "NAME", "data_length": 100, "description": "Speaker Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.APPEARANCES", "name": "Speaker Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "APPEARANCES", "data_length": 0, "description": "Speaker Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.FIELDGROUP.LOCALASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200057, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1239, "metadata_element_list": [{"id": "FERRERO.FIELD.COUNTRY", "name": "LOCAL COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "LOCAL COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USER", "name": "USER", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "USER", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_USER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.ASSOCIATION", "name": "TYPE OF ASSOCIATION", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "TYPE OF ASSOCIATION", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_ASSOCIATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.VALUE", "name": "VALUE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "VALUE", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_VALUE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "CG.CATEGORY.FADEL ASSET INFORMATION", "name": "Rights Asset Information", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200064, "metadata_element_list": [{"id": "CG.FIELD.RIGHTS MANAGED", "name": "Fadel IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fadel IP Rights", "enabled": true, "options": "", "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_RIGHTS_MANAGED_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGED", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.NEEDS RIGHTS MANAGEMENT", "name": "Needs Rights Management", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "10", "field_value": {"type": "string", "value": "N"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Needs Rights Management", "enabled": true, "options": "", "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_NEEDS_RIGHTS_MANAGEMENT_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "NEEDS_RIGHTS_MANAGEMENT", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.RIGHTS MANAGEMENT DESCRIPTION", "name": "Rights Management Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Rights Management Description", "enabled": true, "options": "", "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGEMENT_DESCRIPTION", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.RIGHTS MANAGEMENT STATUS", "name": "Rights Management Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Rights Management Status", "enabled": true, "options": "", "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_RIGHTS_MANAGEMENT_STATUS_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGEMENT_STATUS", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.FORCE SYNC", "name": "Force Sync", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Force Sync", "enabled": true, "options": "", "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_FORCE_SYNC_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "FORCE_SYNC", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.LAST SYNC TIME", "name": "Date of last data sync", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date of last data sync", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "LAST_SYNC_TIME", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "CG.CATEGORY.FADEL RIGHTS INFORMATION", "name": "Rights Information", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200065, "metadata_element_list": [{"id": "CG.TABLE.RIGHTS", "name": "Rights", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1256, "metadata_element_list": [{"id": "CG.FIELD.RIGHT TERRITORIES", "name": "Territory", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Territory", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "TERRITORY", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT USES", "name": "Use", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Use", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "USAGE", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT IN DATE", "name": "In Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "In Date", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "IN_DATE", "data_length": 10, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT OUT DATE", "name": "Out Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Out Date", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "OUT_DATE", "data_length": 10, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "saved_values_behavior_mode": 0}]}]}, {"id": "CG.CATEGORY.FADEL AGREEMENTS AND PARTIES", "name": "Agreements and Parties", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200067, "metadata_element_list": [{"id": "CG.TABLE.PARTIES.AGREEMENTS VW", "name": "Customized Table Parties and Agreements", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1258, "metadata_element_list": [{"id": "CG.FIELD.AGREEMENT NUMBER VW", "name": "Agreement Number ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Number ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_NUMBER", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT DESCRIPTION VW", "name": "Agreement Description ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Description ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_DESCRIPTION", "data_length": 2000, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT START DATE VW", "name": "Agreement Start Date ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Start Date ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_START_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT END DATE VW", "name": "Agreement End Date ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement End Date ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_END_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY NAME VW", "name": "Party Name ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Name ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_NAME", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY ROLE VW", "name": "Party Role ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Role ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_ROLE", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY EMAIL ADDRESS VW", "name": "Party Email Address ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Email Address ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_EMAIL_ADDRESS", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY PHONE NUMBER VW", "name": "Party Phone Number ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Phone Number ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_PHONE_NUMBER", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PRIMARY PARTY CONTACT VW", "name": "Primary Party Contact ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Primary Party Contact ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PRIMARY_PARTY_CONTACT", "data_length": 200, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 8, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}], "has_multilingual_fields": false}, "mime_type": "image/jpeg", "path_list": [{"parents": [{"id": "d4d9835db002b9992125246f2abb7117c99ab016", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "d4d9835db002b9992125246f2abb7117c99ab016", "sequence_number": 0}, {"id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "name": "MASTER CAMP FER ROCHER 12.01.2", "container_state": "NORMAL", "original_uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "sequence_number": 0}, {"id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "name": "01. DE - Rocher ", "container_state": "NORMAL", "original_uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "sequence_number": 0}, {"id": "091216b59cad7f1ea815164c26db27e350c54023", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "sequence_number": 0}, {"id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "name": "01. Rocher", "container_state": "NORMAL", "original_uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "sequence_number": 0}, {"id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "name": "01. Ferrero Rocher", "container_state": "NORMAL", "original_uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "sequence_number": 0}, {"id": "93b0968611de11160ed068afeb9930b9965bd5ff", "name": "03. Premium Chocolate", "container_state": "NORMAL", "original_uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "sequence_number": 0}], "complete": true, "sequence_number": 1, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "sequence_number": 0}, {"id": "4b05a895330aa2fb6046f59731aba5dd93858431", "name": "LOCADAPLOCCOMM - FER ROCHER 4", "container_state": "NORMAL", "original_uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "sequence_number": 0}, {"id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "name": "25-26", "container_state": "NORMAL", "original_uoi_id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "sequence_number": 0}, {"id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "name": "02. Campaign", "container_state": "NORMAL", "original_uoi_id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "sequence_number": 0}, {"id": "f31042cfc487f066486c46527c076b8ee6618ceb", "name": "01. Standard", "container_state": "NORMAL", "original_uoi_id": "f31042cfc487f066486c46527c076b8ee6618ceb", "sequence_number": 0}, {"id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "name": "02. Sweden", "container_state": "NORMAL", "original_uoi_id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "sequence_number": 0}, {"id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "name": "SCANDINAVIA", "container_state": "NORMAL", "original_uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "sequence_number": 0}, {"id": "f2649309eb916c5c25bb309e3db061042c3eecca", "name": "01. MC - Rocher", "container_state": "NORMAL", "original_uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "sequence_number": 0}, {"id": "091216b59cad7f1ea815164c26db27e350c54023", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "sequence_number": 0}, {"id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "name": "01. Rocher", "container_state": "NORMAL", "original_uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "sequence_number": 0}, {"id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "name": "01. Ferrero Rocher", "container_state": "NORMAL", "original_uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "sequence_number": 0}, {"id": "93b0968611de11160ed068afeb9930b9965bd5ff", "name": "03. Premium Chocolate", "container_state": "NORMAL", "original_uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "sequence_number": 0}], "complete": true, "sequence_number": 1, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "d4d9835db002b9992125246f2abb7117c99ab016", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "d4d9835db002b9992125246f2abb7117c99ab016", "sequence_number": 0}, {"id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "name": "MASTER CAMP FER ROCHER 12.01.2", "container_state": "NORMAL", "original_uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "sequence_number": 0}, {"id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "name": "01. DE - Rocher ", "container_state": "NORMAL", "original_uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "sequence_number": 0}, {"id": "bfbc248a12a4bf0382406620f0d9ec41ff42e35e", "name": "01. Ferrero Rocher", "container_state": "NORMAL", "original_uoi_id": "bfbc248a12a4bf0382406620f0d9ec41ff42e35e", "sequence_number": 0}, {"id": "3d7debea6815ae46c9598191b1c645007666292a", "name": "03 . Premium Chocolate", "container_state": "NORMAL", "original_uoi_id": "3d7debea6815ae46c9598191b1c645007666292a", "sequence_number": 0}, {"id": "c0bb10be2b8f96ee4d27a2dfb7e0d03de68cf114", "name": "DE", "container_state": "NORMAL", "original_uoi_id": "c0bb10be2b8f96ee4d27a2dfb7e0d03de68cf114", "sequence_number": 0}, {"id": "b124e1ed196028bdd0e2c093e28078ca8d9ad462", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "b124e1ed196028bdd0e2c093e28078ca8d9ad462", "sequence_number": 0}, {"id": "68ce80e8c8a30badb82dabfd823886a6fa6fe309", "name": "Y - Geography", "container_state": "NORMAL", "original_uoi_id": "68ce80e8c8a30badb82dabfd823886a6fa6fe309", "sequence_number": 0}], "complete": true, "sequence_number": 1, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "sequence_number": 0}, {"id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "name": "Read Only", "container_state": "NORMAL", "original_uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "sequence_number": 0}, {"id": "23b155c32d5c6142914b41458234c100812bbec8", "name": "Oliver", "container_state": "NORMAL", "original_uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "sequence_number": 0}, {"id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "name": "Z - Exchange", "container_state": "NORMAL", "original_uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "sequence_number": 0}], "complete": true, "sequence_number": 1, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}], "creator_id": "1003", "asset_state": "NORMAL", "checked_out": false, "folder_path": "", "content_size": 11710, "content_type": "BITMAP", "content_state": "NORMAL", "date_imported": "2026-01-14T14:23:41.743+01:00", "import_job_id": 225736, "subscribed_to": false, "collection_ids": [], "latest_version": true, "legacy_model_id": 116, "content_editable": true, "import_user_name": "bizAdmin", "date_last_updated": "2026-01-14T14:27:26.563+01:00", "metadata_model_id": "ECOMMERCE", "original_asset_id": "85a99b184653d78906eccc8934a67e5ed4bcd9e9", "rendition_content": {"preview_content": {"id": "e2d4cf15ef6d49db983e84862db5de2f0a71489b", "url": "/otmmapi/v6/renditions/e2d4cf15ef6d49db983e84862db5de2f0a71489b", "name": "images-S.png", "width": 225, "height": 225, "mime_type": "image/png", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "PREVIEW", "content_path": "data\\\\repository\\\\screen\\\\vol0\\\\186\\\\images-S_e2d4cf15ef6d49db983e84862db5de2f0a71489b.png", "content_size": 86752, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "thumbnail_content": {"id": "59f031c0ae0f40304470477eb86a29a93d8822c5", "url": "/otmmapi/v6/renditions/59f031c0ae0f40304470477eb86a29a93d8822c5", "name": "images-T.png", "width": 225, "height": 225, "mime_type": "image/png", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "THUMBNAIL", "content_path": "data\\\\repository\\\\thumb\\\\vol0\\\\201\\\\images-T_59f031c0ae0f40304470477eb86a29a93d8822c5.png", "content_size": 86752, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_content_info": {"master_content": {"id": "54b52b6e3712943efccbb09320095372e7ded965", "url": "/otmmapi/v6/renditions/54b52b6e3712943efccbb09320095372e7ded965", "name": "images.jpg", "width": 225, "height": 225, "mime_type": "image/jpeg", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\227\\\\images_54b52b6e3712943efccbb09320095372e7ded965.jpg", "content_size": 11710, "unit_of_size": "BYTES", "content_checksum": "27e06263333fb7d367ba8ee6ab78df97", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_state_user_id": "1003", "master_content_info": {"id": "54b52b6e3712943efccbb09320095372e7ded965", "url": "/otmmapi/v6/renditions/54b52b6e3712943efccbb09320095372e7ded965", "name": "images.jpg", "width": 225, "height": 225, "mime_type": "image/jpeg", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\227\\\\images_54b52b6e3712943efccbb09320095372e7ded965.jpg", "content_size": 11710, "unit_of_size": "BYTES", "content_checksum": "27e06263333fb7d367ba8ee6ab78df97", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "delivery_service_url": "https://ppr.dam.ferrero.com/adaptivemedia/rendition?id=85a99b184653d78906eccc8934a67e5ed4bcd9e9", "product_associations": false, "security_policy_list": [{"id": 5467, "name": "Marketing Viewer", "status": "NORMAL", "created_by": "1003", "create_date": "2023-10-06T16:52:07.297+02:00", "description": "Marketing Viewer", "ownership_type": "PUBLIC"}, {"id": 9525, "name": "Premium Chocolate Local DE Editable Ferrero Rocher", "status": "NORMAL", "created_by": "1003", "create_date": "2024-11-26T10:08:39.973+01:00", "description": "Premium Chocolate Local DE Editable Ferrero Rocher", "ownership_type": "PUBLIC"}], "thumbnail_content_id": "59f031c0ae0f40304470477eb86a29a93d8822c5", "content_state_user_id": "1003", "content_state_user_name": "OTMM BusinessAdmin", "asset_lock_state_user_id": "1003", "metadata_state_user_name": "OTMM BusinessAdmin", "access_control_descriptor": {"permissions_map": {"entry": [{"key": "text.securityPolicy.permission.Custom04Permission", "value": true}, {"key": "text.securityPolicy.permission.ContentEditPermission", "value": true}, {"key": "text.securityPolicy.permission.AssetViewPermission", "value": true}, {"key": "text.securityPolicy.permission.ProjectViewPermission", "value": true}, {"key": "text.securityPolicy.permission.MembershipEditPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom03Permission", "value": true}, {"key": "text.securityPolicy.permission.MetaDataEditPermission", "value": true}, {"key": "text.securityPolicy.permission.EditParentsPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom02Permission", "value": true}, {"key": "text.securityPolicy.permission.ExportPermission", "value": true}, {"key": "text.securityPolicy.permission.SummaryViewPermission", "value": true}, {"key": "text.securityPolicy.permission.PreviewViewPermission", "value": true}, {"key": "text.securityPolicy.permission.SubscribePermission", "value": true}, {"key": "text.securityPolicy.permission.DeleteAssetPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom01Permission", "value": true}]}}, "content_lock_state_user_id": "1003", "asset_state_last_update_date": "2026-01-14T14:27:26.563+01:00", "content_lock_state_user_name": "bizAdmin", "metadata_lock_state_user_name": "bizAdmin", "content_state_last_update_date": "2026-01-14T14:23:42.017+01:00", "inherited_metadata_collections": [{"container_id": "d4d9835db002b9992125246f2abb7117c99ab016", "container_name": "05. Final Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "d4d9835db002b9992125246f2abb7117c99ab016", "originator_id": "d4d9835db002b9992125246f2abb7117c99ab016", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "05. Final Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "container_name": "MASTER CAMP FER ROCHER 12.01.2", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "MASTER CAMP FER ROCHER 12.01.2"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000783"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "MASTER_CAMP_FER_ROC_CQ_LG_DE_PRE_0000783"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local comm on global brands"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Master Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Master Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2026/2027"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "B1"}, "display_value": "Master campaign ready for re-mastering", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ADDITIONALAPPROVER", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.LICENSING", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "d0ef653291e269a7d1ddf0ebfedd1c6ad70b1c59"}, "metadata_element": {"id": "FERRERO.FIELD.LICENSING", "name": "Campaign License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "LICENSING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}}]}, {"container_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "container_name": "01. DE - Rocher ", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "bb01cf85444107f22341d2b88421f0cbaade0bf9"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E006"}, "display_value": "GERMANY", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Local DE Editable Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Premium Chocolate Local DE Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "8f497ce53d23899c7c09aa5a7ca69c9f55c3a62d"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E64"}, "display_value": "GERMANY", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "ca70a6d55e4277ecbef2a01a593c614501cbcf74"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "3e9d669ab1047383d0416ba40af75744148c94c8"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0e241fc386dcd91baa31a409e297169fe4a352c2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "2e3e0f2be0e487b540d9b63cb8c0e9ed9c6b1bb6"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "359c98154f230a60acc6b4eb048e129411d7a778"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "b3698893fc223e8371f4e4c0d560d0536c724a09"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "e92f9f10c0c29dda8261218c2c72a0baa66472f2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "15dff42c3b196ba3ae5b3c2ea33f00e347e6f654"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Extended Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0ae044cd9dddf86cd9406c9edc3996b18c430be0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "name": "AMMC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AMMC", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LOCAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "7806fed6127b50c21f6b03e1f7b63f3dedc1e8d1"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "RMMC", "values": [{"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "4c8a2d6e178638bfacfeaf3f7f6f1000304693a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "name": "Product Asset Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Product Asset Approval Ferrero Rocher Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Asset Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCT_ASSET_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local comm on global brands"}, "display_value": "Local comm on global brands", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "5a1ae26558efdc03336c0df838dd9e7c2a51c687"}, "metadata_element": {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "name": "Market Unit", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market Unit", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETUNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "MARKET_UNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "091216b59cad7f1ea815164c26db27e350c54023", "container_name": "EU", "container_type_id": "GEOGRAPHYLOCAL", "container_type_name": "L4 - GEOGRAPHY LOCAL", "inherited_metadata_values": [{"id": "FERRERO.MARKET.FOLDER.GLOBAL", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "4c4d4bf36bf8b1ace55f990e78d6332a9cb20990"}, "metadata_element": {"id": "FERRERO.MARKET.FOLDER.GLOBAL", "name": "Global/Local (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "LOCAL"}, "display_value": "Local", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local (Marketing)", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "GLOBALLOCAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_AREA", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "3dc200c993ab8263952dc6da1498026f615f45dd"}, "metadata_element": {"id": "MARKETING_AREA", "name": "AREA", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E010"}, "display_value": "EUROPE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "AREA", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "AREA", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "AREA", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "dc7749c3e113ec9e0b9e9a3840ea55673ca5e49f"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "f2d658a3829c2ea158ae70a4b4e7928bcf88f8e2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "972d0258a82de85672bd84d8af68cdb67ad3d3ca"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "1212505ad3fe4c9d7458568f3d95aeb4c4e5c37e"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "9d1dfdef55ff7a3eb03552988ddf729c7a0f5107"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "54f006eeb366121a29ee98da33d437615dcd34e0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "1fd8802010e30d44cebb2f3eb090b12ac550f97d"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "8b6e1d8f7dc3c4671cfc11a2914d838ca3ee3f3b"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "be0dc9a87262ee7fd165237b531ba3b7aa93a260"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "2f99f0f0f9e43fb34df9222c8b73a86fb78e473e"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "container_name": "01. Rocher", "container_type_id": "GLOBALBRAND", "container_type_name": "L3 - BRAND", "inherited_metadata_values": [{"id": "FERRERO.TABULAR.NEW.BRAND", "tabular": true, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "9bb1c183135f5240f09132aef59c4ea48c762381"}, "metadata_element": {"id": "FERRERO.TABULAR.NEW.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF04"}, "display_value": "ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND (Marketing)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF04"}, "display_value": "ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "BRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TABULAR_BRAND", "column_name": "BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.NEW.BRAND", "parent_table_name": "BRAND (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "tabular": true, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "a37b13c02cba799378211e17b73234a0d836f9b6"}, "metadata_element": {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "CQ"}, "display_value": "FERRERO ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND(HARMONIZED)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "CQ"}, "display_value": "FERRERO ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.HARMONIZEDBRAND", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_HARMONIZEDBRAND", "column_name": "HARMONIZEDBRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.HARMONIZEDBRAND", "parent_table_name": "BRAND(HARMONIZED)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "AGENCY.COLLABORATION", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "183d6e0957a9940f9b18ef44f46d957802b63397"}, "metadata_element": {"id": "AGENCY.COLLABORATION", "name": "Agency collaboration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency collaboration", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "AGENCY_COLLABORATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "AGENCY.SHARING", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "d0e2b725ddfdc452cc3ba750bbe8ec059c6b01ba"}, "metadata_element": {"id": "AGENCY.SHARING", "name": "Agency sharing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency sharing", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "AGENCY_SHARING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "CONTENT.SCALING.AGENCYNAME", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "f9dfa695cc5ef8cd3fafada4e44cfdaa1522d58a"}, "metadata_element": {"id": "CONTENT.SCALING.AGENCYNAME", "name": "Content Scaling agency name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Scaling agency name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENTSCALING_AGENCYNAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "container_name": "01. Ferrero Rocher", "container_type_id": "GLOBALSUBCATEGORY", "container_type_name": "L2 - SUBCATEGORY", "inherited_metadata_values": [{"id": "MARKETING_SUBCATEGORY", "tabular": false, "value_id": {"uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "originator_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "inherited_field_id": "3000ad591e09b5c75f85fc2ccbb9ebeb31b3ab78"}, "metadata_element": {"id": "MARKETING_SUBCATEGORY", "name": "SUBCATEGORY", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Mart-Ferrero-Rocher"}, "display_value": "Ferrero Rocher", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "SUBCATEGORY", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "SUBCATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "SUBCATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "tabular": true, "value_id": {"uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "originator_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "inherited_field_id": "2c751ce760d88c0e271925ea5149348106944bfa"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Subcategory Owner", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_SUBCATEGORY_OWNER_TM", "column_name": "SUBCATEGORY_OWNER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "parent_table_name": "Subcategory Owner", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "container_name": "03. Premium Chocolate", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "originator_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E06"}, "display_value": "PREMIUM CHOCOLATE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "originator_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final Approver BPS ", "values": [{"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "container_name": "00. Master Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "originator_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00. Master Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "container_name": "LOCADAPLOCCOMM - FER ROCHER 4", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "LOCADAPLOCCOMM - FER ROCHER 4"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000794"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "LOCADAPLOCCOMM_-__CQ_LAL_MLT_PRE_0000794"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local adaptation of local comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Master Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000783"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Master Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "DK"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "DK"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "SE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "FI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "NO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "IS"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "GL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2025/2026"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2797"}, "display_value": "Owner, Asset (AssetownerLoG, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2797"}, "display_value": "Owner, Asset (AssetownerLoG, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2797"}, "display_value": "Owner, Asset (AssetownerLoG, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2797"}, "display_value": "Owner, Asset (AssetownerLoG, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "A1"}, "display_value": "Local Campaign ready for localization", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ADDITIONALAPPROVER", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.LICENSING", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "d0ef653291e269a7d1ddf0ebfedd1c6ad70b1c59"}, "metadata_element": {"id": "FERRERO.FIELD.LICENSING", "name": "Campaign License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "LICENSING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}}]}, {"container_id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "container_name": "25-26", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "originator_id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "25-26"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "container_name": "02. Campaign", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "originator_id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "02. Campaign"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "f31042cfc487f066486c46527c076b8ee6618ceb", "container_name": "01. Standard", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "f31042cfc487f066486c46527c076b8ee6618ceb", "originator_id": "f31042cfc487f066486c46527c076b8ee6618ceb", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "01. Standard"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "container_name": "02. Sweden", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "originator_id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "02. Sweden"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "container_name": "SCANDINAVIA", "container_type_id": "GLOBALMARKETUNIT", "container_type_name": "L6 - MARKET UNIT", "inherited_metadata_values": [{"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "24a6615bcce9adc5a098c76c29b8e8baba61a9a3"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E22"}, "display_value": "SCANDINAVIA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "13063087b81ea172db42e69ed8e8fa013cd5bfe0"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Local SCANDINAVIA Editable Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "bf49ba2a40d0d0dccee4d5de7381659b106dd89a"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Premium Chocolate Local SCANDINAVIA Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "8e4d311466783d8215a38b08bee3cb2b3bfcf40f"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "9e88b5726590ab30642999a28a301e3fbcebc762"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "name": "Published Security Policy - Restricted Visibility", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Security Policy - Restricted Visibility", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_VISIBILITY_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "3c0070e420882e3e18f6097811cb60a67239003b"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local SCANDINAVIA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "7f3c1933b61e900457ea6e2aab750303882873d4"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "b0c960759e48c0fcdcb650417179a614da95e866"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Local SCANDINAVIA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "6f603fcc63415e266dc35cf2314d31357a2966bf"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "3c12728b06ecfafeeb74482ea7b7296b180765f9"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "dc9b8ffa0591a1b2956c07fa5dc10ff477c84f4e"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "495fa4f08769a021cfa907dfb7a903fade9bd19a"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "e3b647e172a89e1e7cbdd2964faff1bca8dcf520"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "6870cca056b54cd400a9fbd4fe75513e69cedcdd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "RMMC", "values": [{"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "container_name": "01. MC - Rocher", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "bb01cf85444107f22341d2b88421f0cbaade0bf9"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E023"}, "display_value": "MULTI COUNTRY EUROPE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "8f497ce53d23899c7c09aa5a7ca69c9f55c3a62d"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E22"}, "display_value": "SCANDINAVIA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "ca70a6d55e4277ecbef2a01a593c614501cbcf74"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "3e9d669ab1047383d0416ba40af75744148c94c8"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "0e241fc386dcd91baa31a409e297169fe4a352c2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "2e3e0f2be0e487b540d9b63cb8c0e9ed9c6b1bb6"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "359c98154f230a60acc6b4eb048e129411d7a778"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "b3698893fc223e8371f4e4c0d560d0536c724a09"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "e92f9f10c0c29dda8261218c2c72a0baa66472f2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "15dff42c3b196ba3ae5b3c2ea33f00e347e6f654"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "0ae044cd9dddf86cd9406c9edc3996b18c430be0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "name": "AMMC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AMMC", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LOCAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "7806fed6127b50c21f6b03e1f7b63f3dedc1e8d1"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "RMMC", "values": [{"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "4c8a2d6e178638bfacfeaf3f7f6f1000304693a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "name": "Product Asset Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Asset Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCT_ASSET_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of local comm"}, "display_value": "Local adaptation of local comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of local comm"}, "display_value": "Local adaptation of local comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "5a1ae26558efdc03336c0df838dd9e7c2a51c687"}, "metadata_element": {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "name": "Market Unit", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market Unit", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETUNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "MARKET_UNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "container_name": "Read Only", "container_type_id": "L3 - Agency Structure", "container_type_name": "L3 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "55530f721f18c847e35d7c828edf53461b5014b0"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "330bb6f68316aab5c45f9fe34e047cce573c67cc"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "name": "Agency Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "AGENCY_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "e30e90d694f9935d4c15c4c78891beed8853a272"}, "metadata_element": {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "name": "Published Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "PUBLISHED_ASSET_SP_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "23b155c32d5c6142914b41458234c100812bbec8", "container_name": "Oliver", "container_type_id": "L2 - Agency Structure", "container_type_name": "L2 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.AGENCY", "tabular": false, "value_id": {"uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "originator_id": "23b155c32d5c6142914b41458234c100812bbec8", "inherited_field_id": "48fcbc397986aca5bb8722a95197dd0a46f19b4e"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_AGENCY", "column_name": "AGENCY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "container_name": "Z - Exchange", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "YY"}, "display_value": "AGENCIES", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Final Approver BPS ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}], "asset_lock_state_last_update_date": "2026-01-14T14:27:42.143+01:00", "content_lock_state_last_update_date": "2026-01-14T14:23:42.103+01:00"} \N \N active f \N \N 2026-01-16 20:41:22.194138 2026-01-16 20:41:22.194138 2026-01-16 20:41:22.194138 14 WPzPgq 6341dedf8117677336cb66fa9a7ce94c4c2d10d1 kinder-joy_videoE2E .mp4 \N video/mp4 \N \N \N \N \N \N \N \N \N \N \N \N \N C000000783 4b05a895330aa2fb6046f59731aba5dd93858431 C000000794 c61cb01650b9ca8e8a9e27f9d47a5f8273753ed9 Box File ID: 2105210425292\nBox URL: https://app.box.com/file/2105210425292\nDAM Asset ID: 6341dedf8117677336cb66fa9a7ce94c4c2d10d1 {"name": "kinder-joy_videoE2E.mp4", "links": {"links": [], "source_id": "6341dedf8117677336cb66fa9a7ce94c4c2d10d1"}, "locked": false, "deleted": false, "expired": false, "version": 1, "asset_id": "6341dedf8117677336cb66fa9a7ce94c4c2d10d1", "metadata": {"id": "ECOMMERCE", "name": "Marketing Asset", "type": "com.artesia.metadata.MetadataModel", "legacy_id": 116, "metadata_element_list": [{"id": "FERRERO.CATEGORY.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200054, "metadata_element_list": [{"id": "FERRERO.FIELD.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Status", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.CONTENT_STATUS", "edit_type": "COMBO_NOTNULL", "facetable": false, "searchable": true, "table_name": "FERRERO_CONTENT_STATUS_MD", "column_name": "CONTENT_STATUS", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9215, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRER.CATEGORY.ASSET_INFO", "name": "Asset Info", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200022, "metadata_element_list": [{"id": "FERRERO.FIELD.MKTG.ASSET TYPE", "name": "Asset Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.ASSETTYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.FISCAL YEAR", "name": "Release Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2026/2027"}, "display_value": "2026/2027", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Release Fiscal Year", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_DOMAIN_FISCAL_YEAR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "FISCAL__YEAR", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "name": "Main Languages", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1210, "metadata_element_list": [{"id": "MAIN_LANGUAGES", "name": "MAIN LANGUAGES", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "MAIN LANGUAGES", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MAIN LAGUAGES_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MAIN_LANGUAGE_TABLE", "column_name": "MAIN_LANGUAGE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "parent_table_name": "Main Languages", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.ASSET DESCRIPTION", "name": "Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Description", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "DESCR", "data_length": 249, "description": "Descriptive information", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.FLAVOUR", "name": "Flavour", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Flavour", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.FLAVOUR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FLAVOUR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.SIZE", "name": "Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Size", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.SIZE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SIZE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1241, "metadata_element_list": [{"id": "FERRERO.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Compliance", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ASSETCOMPLIANCE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_COMPLIANCE", "column_name": "ASSET_COMPLIANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "parent_table_name": "Asset Compliance", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.TAG DETAILS", "name": "Tag Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 118, "metadata_element_list": [{"id": "ARTESIA.FIELD.TAG", "name": "Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Tag", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.TAGS", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "OTMM_TAGS", "column_name": "TAG", "data_length": 80, "description": "Tag", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG CONFIDENCE", "name": "Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Confidence", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG TYPE", "name": "Tag Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Tag Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "TAG_TYPE", "data_length": 10, "description": "Tag Type", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED BY", "name": "Associated By", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Associated By", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_BY", "data_length": 10, "description": "Associated By", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED DATE", "name": "Associated Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Associated Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_DATE", "data_length": 10, "description": "Associated Date", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.STATE", "name": "Global/Local", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "GLOBAL"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO_NOTNULL", "facetable": true, "searchable": true, "table_name": "FERRERO_IC_ASSET_DETAILS", "column_name": "ASSET_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.ASPECT RATIO", "name": "Aspect Ratio (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio (Marketing)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASPECT_RATIO", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASPECT_RATIO", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "name": "Tag (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1222, "metadata_element_list": [{"id": "MARKETING_TAG", "name": "Marketing Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Marketing Tag", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.DOMAIN.TAG", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TAG_MARKET", "column_name": "TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "parent_table_name": "Tag (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.TAGS", "name": "Auto-Generated Tags", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Auto-Generated Tags", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "AUTO_GENERATED_TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CERTIFIER", "name": "Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approver", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.MARKETING.FIELD.APPROVAL DATE", "name": "Approval__Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approval__Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.LEGAL APPROVAL DATE", "name": "Legal Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CERTIFIER", "name": "IA&CC Certifier", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Certifier", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CC APPROVAL DATE", "name": "IA&CC Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "name": "Extended Approval", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1230, "metadata_element_list": [{"id": "FERRERO.FIELD.EXTENDED.APPROVAL", "name": "Extended Approval required by:", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended Approval required by:", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COMMENTS", "name": "Comment", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comment", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "COMMENTS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.DATE", "name": "Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USERS", "name": "User ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "User ID", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "USERS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXTENDED.JOBID", "name": "Extended JobID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended JobID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.MIGRATION.INDEX", "name": "Migration Index", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Migration Index", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MIGRATION.INDEX", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MIGRATION_INDEX", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "FERRERO_MARKET_MARKETING_CREATOR", "name": "Marketing Creator", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Marketing Creator", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.CREATOR", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MARKETING_CREATOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "ARTESIA.FIELD.IS LATEST VERSION", "name": "Is Latest Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Y"}, "display_value": "Yes", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Is Latest Version", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.YES_NO", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "IS_LATEST_VERSION", "data_length": 1, "description": "Is this the latest version? (Y/N)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET VERSION", "name": "Asset Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 1}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Version", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "INTEGER", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "VERSION", "data_length": 12, "description": "Version number of asset", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET_ID", "name": "Asset ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "6341dedf8117677336cb66fa9a7ce94c4c2d10d1"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset ID", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "LOGICAL_UOI_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.ECOMMERCE STATUS", "name": "Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "PUBLISHED"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Status", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "ASSET_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CREATOR", "name": "Uploaded by", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Uploaded by", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_USER_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.FIELD.CREATION DATE", "name": "Upload Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-14T14:23:41.74+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Upload Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_DT", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.ASSET NAME", "name": "Asset Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "kinder-joy_videoE2E.mp4"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Name", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "description": "Original name of master object", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.CONTENT TYPE", "name": "Content Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "VIDEO"}, "display_value": "Video", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Type", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.CONTENT_TYPES", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "CONTENT_TYPE", "data_length": 8, "description": "Content Type", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.MIME TYPE", "name": "File Extension", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "video/mp4"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Extension", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_MIME_TYPE", "data_length": 80, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.FILE.SIZE", "name": "File Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "long", "value": 3080691}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Size", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "LONG", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_SIZE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP RESOLUTION", "name": "Bitmap Resolution", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Resolution", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_RESOLUTION", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP WIDTH", "name": "Bitmap Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Width", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_WIDTH", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP HEIGHT", "name": "Bitmap Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Height", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_HEIGHT", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "name": "Approval Metadata", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1249, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.DEPARTMENT", "name": "Department", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Department", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "DEPARTMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.CERTIFIER", "name": "Certifier", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Certifier", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL DATE", "name": "Approval Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Approval Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "APPROVAL_DATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.COMMENT", "name": "Comments", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comments", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "COMMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.TYPE OF APPROVAL", "name": "Type of Approval", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Approval", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "TYPE_OF_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL STATUS", "name": "Approval Status", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Approval Status", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "APPROVAL_STATUS", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.SUB JOBID", "name": "Sub Job Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sub Job Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.VIDEO.BIT_RATE", "name": "Bitrate", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 2487939.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitrate", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "BIT_RATE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.EMBEDDED.FIELD.DURATION", "name": "Duration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00:00:09:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Duration", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "DURATION_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.ASPECT RATIO", "name": "Aspect Ratio", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "1.778"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "ASPECT_RATIO", "data_length": 30, "displayable": false, "instructions": "ASPECT_RATIO", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME HEIGHT", "name": "Frame Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 1080}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Height", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_HEIGHT", "data_length": 12, "displayable": true, "instructions": "FRAME_HEIGHT", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME WIDTH", "name": "Frame Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 1920}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Width", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_WIDTH", "data_length": 12, "displayable": true, "instructions": "FRAME_WIDTH", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.ASPECT.RATIO.POC", "name": "Aspect Ratio(POC)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "16:9"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio(POC)", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASPECT_RATIO_TABLE", "column_name": "ASPECT_RATIO", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "PRODUCT.DETAILS", "name": "Product Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200029, "metadata_element_list": [{"id": "FERRERO.TABLE.EANCODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1208, "metadata_element_list": [{"id": "EAN_CODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "EAN CODE/ 77 CODE", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "EAN.CODE", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "EAN_CODE", "column_name": "EAN_CODE_DESCRIPTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "COUNTRY", "name": "COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "EAN_CODE", "column_name": "COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKETING.ADVANCE.PRODUCT.LINK", "name": "Asset-to-product relation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset-to-product relation", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_MARKETING_ADVANCE_PRODUCT_LINK", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ADVANCE_PRODUCT_LINK", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 10182, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.SUB BRAND", "name": "Sub-Brands", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Sub-Brands", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.SUBBRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "SUB_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT WEIGHT", "name": "Product Weight", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Weight", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_WEIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.CONSUMER UNIT PACKAGING", "name": "Consumer Unit Packaging", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Consumer Unit Packaging", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PACK", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "CONSUMER_UNIT_PACKAGING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.4 DIGIT CODE", "name": "4 Digit Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "4 Digit Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "DIGITCODE", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERREO.ECOM.RETAILER_SPECIFIC_FIELD", "name": "Retailer Specific", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Retailer Specific", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "RETAILER_SPECIFIC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "cascading_group_id": "FERRERO.RETAILER.SPECIFIC", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY START PERIOD", "name": "Asset validity start period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity start period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_STARTING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY END PERIOD", "name": "Asset validity end period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity end period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_ENDING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.ASSET.NAMING.CONVENTION", "name": "Does asset need GS1 naming convention", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Does asset need GS1 naming convention", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASSETNAMINGCONVENTION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_NAMING_CONVENTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9515, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT VIEW", "name": "Product View", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product View", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT VIEW", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_VIEW", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT ANGLE", "name": "Product Angle", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Angle", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT.ANGLE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_ANGLE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT STATE", "name": "Product State", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product State", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT STATE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PROMOTION ID", "name": "Promo ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Promo ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROMO_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.BUSINESS.ASSET TYPE", "name": "Asset Type (eDAM)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Angled view", "field_value": {"type": "string", "value": "angledview"}, "display_value": "ANGLED VIEW", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Type (eDAM)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "OTMM.DOMAIN.OTMM_ASSETTYPE_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_BUSINESS_INFO", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7244, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200048, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.AGENCY NAME", "name": "Agency Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "0000000001"}, "display_value": "ATest", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Agency Name", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.AGENCY_NAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AGENCY_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7336, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.CREATIX", "name": "CreativeX", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200059, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.CREATIVEX", "name": "Confidence", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1245, "metadata_element_list": [{"id": "FERRERO.TAB.FIELD.CREATIVEX", "name": "Platform > Rating (%)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Platform > Rating (%)", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_CREATIVEX", "column_name": "CREATIVEX_NEW", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CREATIVEX", "parent_table_name": "Confidence", "cascading_group_id": "FERRERO.CREATIVEX.CHAR", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.CREATIVEX LINK", "name": "CreativeX Hyperlink", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "CreativeX Hyperlink", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_CREATIVEX", "column_name": "CREATIVE_LINK", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.IP_RIGHTS", "name": "IP Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200046, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.IPRIGHT", "name": "IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IP Rights", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.IPRIGHTS", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IP_RIGHTS", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.BUYOUT", "name": "Touchpoint Scope", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Touchpoint Scope", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.TOTAL_BUYOUT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TOTAL_BUYOUT", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.FERRERO PROPERTY", "name": "Ferrero Property", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Ferrero Property", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.FERRERO_PROPERTY", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FERRERO_PROPERTY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200035, "metadata_element_list": [{"id": "FERRERO.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1209, "metadata_element_list": [{"id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "name": "IP Coverage, Area, Region & Market Unit", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Coverage, Area, Region & Market Unit", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "IPCOVERAGE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "cascading_group_id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHT TYPE", "name": "Copyright Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHT_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.MEDIATYPE", "name": "Media Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Media Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MEDIA_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "MEDIA_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE FROM", "name": "Expiration of Usage - From", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - From", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_FROM", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE TO", "name": "Expiration of Usage - To", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - To", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_TO", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO._DURATION", "name": "IP Duration", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Duration", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "ECOM_DURATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHTTYPE DETAILS", "name": "Copyright Type Details", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type Details", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHTTYPE_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 6, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.MARKET.VID_STAT_RIGHT", "name": "Video & Static Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200047, "metadata_element_list": [{"id": "FERRERO.MARKET.VID_N_STAT", "name": "Video and Static Right", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video and Static Right", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VID_AND_STAT_RIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.VID_STAT_TYPE", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1221, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.TYPE_VID", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Video & Static Right", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TYPE_VID_STAT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_MARKET_TYPE_VID_STAT", "column_name": "TYPE_OF_VIDEO_STATIC_RIGHT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.VID_STAT_TYPE", "parent_table_name": "Type of Video & Static Right", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKET.PROD_COMPANY", "name": "Production House", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Production House", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.PRODUCT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200050, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.LICENSIN", "name": "Licensing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Licensing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSING", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "cascading_group_id": "FERRERO.MARKET.CG.LICENSE", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.SPOT_DETAILS", "name": "Spot Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200049, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.SPOT_VERSION", "name": "Spot Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Version", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_VERSION", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_VERSION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.SPOT_TYPE", "name": "Spot Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_TYPE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.DIRECTOR_NAME", "name": "Director Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Director Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "DIRECTOR_NAME", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VIDEO_POST_PROD_COMPANY", "name": "Video Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VID_POST_PROD_CONTACT", "name": "Video Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_COMPANY", "name": "Audio Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_CONTACT", "name": "Audio Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.BROADCASTER.CODE", "name": "Broadcaster Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Broadcaster Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BROADCASTER_CODE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.TECHNICAL_VALIDATION", "name": "Technical Validation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Technical Validation", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TECHNICAL_VALIDATION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS", "name": "Media Analysis", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1002, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "name": "Categories", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 105, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY NAME", "name": "Category Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Category Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "NAME", "data_length": 100, "description": "Category Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY CONFIDENCE", "name": "Category Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Category Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "CONFIDENCE", "data_length": 10, "description": "Category Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES COUNT", "name": "Faces Count", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Faces Count", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACECOUNT", "column_name": "COUNT", "data_length": 10, "description": "Faces Count", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "name": "Face Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 106, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME", "name": "Recognized Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME", "data_length": 2000, "description": "Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME CONFIDENCE", "name": "Recognized Name Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME_CONFIDENCE", "data_length": 10, "description": "Name Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE", "name": "Person Age", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE", "data_length": 10, "description": "Person Age", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE CONFIDENCE", "name": "Person Age Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Person Age Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_CONFIDENCE", "data_length": 10, "description": "Person Age Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER", "name": "Gender", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Gender", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.GENDER", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER", "data_length": 40, "description": "Gender", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER CONFIDENCE", "name": "Gender Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Gender Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER_CONFIDENCE", "data_length": 10, "description": "Gender Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.FACE COORDS", "name": "Face Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "FACE_COORDS", "data_length": 200, "description": "Face Coordinates like postion, height,width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE GROUP", "name": "Person Age Group", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age Group", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.AGE GROUP", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_GROUP", "data_length": 10, "description": "Person Age Group", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "name": "Safe Content", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 107, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONTENT TYPE", "name": "Safe Content Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Safe Content Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENTS", "data_length": 20, "description": "Safe Content Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONFIDENCE", "name": "Content Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Content Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENT_CONFIDENCE", "data_length": 10, "description": "Safe Content Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "name": "Colors", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 108, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.NAME", "name": "Color", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Color", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "NAME", "data_length": 25, "description": "COLOR", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.PROPORTION", "name": "Color Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Color Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "PROPORTION", "data_length": 10, "description": "Proportion", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.FOREGROUND", "name": "Foreground Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Foreground Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "FOREGROUND", "data_length": 25, "description": "Foreground Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.BACKGROUND", "name": "Background Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Background Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "BACKGROUND", "data_length": 25, "description": "Background Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.ISBW", "name": "Is Black and White", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Is Black and White", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "ISBW", "data_length": 10, "description": "Is Black and White", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "name": "Captions", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 109, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION TEXT", "name": "Caption Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Caption Text", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "TEXT", "data_length": 2000, "description": "Caption Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION CONFIDENCE", "name": "Caption Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Caption Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "CAPTION_CONFIDENCE", "data_length": 10, "description": "Caption Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "name": "Image Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 110, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.IMAGE TYPE", "name": "Analysis Image Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Analysis Image Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_IMAGE_TYPE", "column_name": "TYPE", "data_length": 100, "description": "Image Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "parent_table_name": "Image Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.DATE", "name": "Date: Media Analysis", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-14T14:26:29+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date: Media Analysis", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MEDIA_ANALYSIS_DATE", "data_length": 25, "description": "Date Media Analysis was done on the asset.", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR LANGUAGE", "name": "Image Text Language", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Image Text Language", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "LANGUAGE", "data_length": 10, "description": "OCR data language", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR TEXT", "name": "Text on Image", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Text on Image", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "TEXT", "data_length": 4000, "description": "OCR Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "name": "Embedded Brand Info", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 119, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.NAME", "name": "Embedded Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Embedded Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Embedded Brand Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.CONFIDENCE", "name": "Embedded Brand Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Embedded Brand Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Embedded Brand Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.COORDINATES", "name": "Embedded Brand Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Embedded Brand Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "COORDINATES", "data_length": 200, "description": "Embedded Brand Coordinates like position, height, width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "HYBRIS.PRODUCT.INFO", "name": "PIM Item Reference", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200027, "metadata_element_list": [{"id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "name": "Hybris Item Reference", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1206, "metadata_element_list": [{"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ID", "name": "Hybris Item ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ID", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT TAG NAME", "name": "Hybris Assignment Label", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Assignment Label", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_TAG_NAME", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ATTRIBUTE NAME", "name": "Hybris Attribute Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Attribute Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ATTRIBUTE_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT CATALOG NAME", "name": "Hybris Catalog Mnemonic", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Catalog Mnemonic", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_CATALOG_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT PK", "name": "Hybris Item PK", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item PK", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_PK", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.SYSTEM ID", "name": "Hybris System ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris System ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "SYSTEM_ID", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.ASSIGNED", "name": "Assigned", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Assigned", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "ASSIGNED", "column_name": "ASSIGNED", "data_length": 38, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PIM TYPE", "name": "PIM Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "PIM Type", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_PIM_TYPE", "column_name": "PIM_TYPE", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS VIDEO", "name": "Media Analysis Video", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1003, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "name": "Labels", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 113, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.ID", "name": "Label Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Label Id", "values": [{"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 1}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 2}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "ID", "data_length": 40, "description": "Label Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.NAME", "name": "Label Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "clothing"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Label Name", "values": [{"value": {"type": "string", "value": "clothing"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "fabric"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "candy"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "NAME", "data_length": 40, "description": "Label Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.APPEARANCES", "name": "Label Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:03\\",\\"endTime\\":\\"0:00:03.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Label Appearances", "values": [{"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:03\\",\\"endTime\\":\\"0:00:03.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:03\\",\\"endTime\\":\\"0:00:03.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:07\\",\\"endTime\\":\\"0:00:07.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "APPEARANCES", "data_length": 0, "description": "Label Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "name": "Sentiments", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 114, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.ID", "name": "Sentiment Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "ID", "data_length": 40, "description": "Sentiment Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.NAME", "name": "Sentiment Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "NAME", "data_length": 40, "description": "Sentiment Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.APPEARANCES", "name": "Sentiment Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "APPEARANCES", "data_length": 0, "description": "Sentiment Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.SEEN.DURATION.RATIO", "name": "Sentiment Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Sentiment Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "name": "Keywords", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 115, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.ID", "name": "Keyword Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "ID", "data_length": 40, "description": "Keyword Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.NAME", "name": "Keyword Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "NAME", "data_length": 40, "description": "Keyword Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.APPEARANCES", "name": "Keyword Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Keyword Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "name": "Faces", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 111, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.ID", "name": "Face Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "ID", "data_length": 40, "description": "Face Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.NAME", "name": "Face Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "NAME", "data_length": 40, "description": "Face Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.TITLE", "name": "Face Title", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Title", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "TITLE", "data_length": 249, "description": "Face Title", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.DESCRIPTION", "name": "Face Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Face Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.APPEARANCES", "name": "Face Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "APPEARANCES", "data_length": 0, "description": "Face Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SPEAKER.FACE.ID", "name": "Video Speaker Object Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Speaker Object Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "THUMBNAIL_OBJECT_ID", "data_length": 40, "description": "Video Speaker Object Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.SEEN.DURATION.RATIO", "name": "Face Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "SEEN_DURATION_RATIO", "data_length": 20, "description": "Face Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "name": "Brands", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 112, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.ID", "name": "Video Brand Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "ID", "data_length": 40, "description": "Brand Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.NAME", "name": "Video Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Brand Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.DESCRIPTION", "name": "Video Brand Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Brand Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.WIKIURL", "name": "Video Brand Wiki URL", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Wiki URL", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "WIKIURL", "data_length": 200, "description": "Brand Wiki URL", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.APPEARANCES", "name": "Video Brand Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Brand Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.SEEN.DURATION.RATIO", "name": "Video Brand Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Brand Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "name": "Speeches", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 116, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.ID", "name": "SpeechText Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "SpeechText Id", "values": [{"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "ID", "data_length": 40, "description": "SpeechText Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXT", "name": "Speech Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Kinder"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Speech Text", "values": [{"value": {"type": "string", "value": "Kinder"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXT", "data_length": 1000, "description": "Speech Text", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXTTYPE", "name": "Speech Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "OCR"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Speech Type", "values": [{"value": {"type": "string", "value": "OCR"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXTTYPE", "data_length": 40, "description": "Speech Type", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.START TIME", "name": "Speech Start Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "0:00:09"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Speech Start Time", "values": [{"value": {"type": "string", "value": "0:00:09"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "START_TIME", "data_length": 40, "description": "Speech Start Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.END TIME", "name": "Speech End Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "0:00:09.04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Speech End Time", "values": [{"value": {"type": "string", "value": "0:00:09.04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "END_TIME", "data_length": 40, "description": "Speech End Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "name": "Speakers", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 122, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.ID", "name": "Speaker Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "ID", "data_length": 40, "description": "Speaker Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.NAME", "name": "Speaker Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "NAME", "data_length": 100, "description": "Speaker Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.APPEARANCES", "name": "Speaker Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "APPEARANCES", "data_length": 0, "description": "Speaker Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.FIELDGROUP.LOCALASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200057, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1239, "metadata_element_list": [{"id": "FERRERO.FIELD.COUNTRY", "name": "LOCAL COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "LOCAL COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USER", "name": "USER", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "USER", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_USER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.ASSOCIATION", "name": "TYPE OF ASSOCIATION", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "TYPE OF ASSOCIATION", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_ASSOCIATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.VALUE", "name": "VALUE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "VALUE", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_VALUE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "CG.CATEGORY.FADEL ASSET INFORMATION", "name": "Rights Asset Information", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200064, "metadata_element_list": [{"id": "CG.FIELD.RIGHTS MANAGED", "name": "Fadel IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fadel IP Rights", "enabled": true, "options": "", "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_RIGHTS_MANAGED_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGED", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.NEEDS RIGHTS MANAGEMENT", "name": "Needs Rights Management", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "10", "field_value": {"type": "string", "value": "N"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Needs Rights Management", "enabled": true, "options": "", "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_NEEDS_RIGHTS_MANAGEMENT_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "NEEDS_RIGHTS_MANAGEMENT", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.RIGHTS MANAGEMENT DESCRIPTION", "name": "Rights Management Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Rights Management Description", "enabled": true, "options": "", "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGEMENT_DESCRIPTION", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.RIGHTS MANAGEMENT STATUS", "name": "Rights Management Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Rights Management Status", "enabled": true, "options": "", "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_RIGHTS_MANAGEMENT_STATUS_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGEMENT_STATUS", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.FORCE SYNC", "name": "Force Sync", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Force Sync", "enabled": true, "options": "", "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_FORCE_SYNC_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "FORCE_SYNC", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.LAST SYNC TIME", "name": "Date of last data sync", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date of last data sync", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "LAST_SYNC_TIME", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "CG.CATEGORY.FADEL RIGHTS INFORMATION", "name": "Rights Information", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200065, "metadata_element_list": [{"id": "CG.TABLE.RIGHTS", "name": "Rights", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1256, "metadata_element_list": [{"id": "CG.FIELD.RIGHT TERRITORIES", "name": "Territory", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Territory", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "TERRITORY", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT USES", "name": "Use", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Use", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "USAGE", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT IN DATE", "name": "In Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "In Date", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "IN_DATE", "data_length": 10, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT OUT DATE", "name": "Out Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Out Date", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "OUT_DATE", "data_length": 10, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "saved_values_behavior_mode": 0}]}]}, {"id": "CG.CATEGORY.FADEL AGREEMENTS AND PARTIES", "name": "Agreements and Parties", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200067, "metadata_element_list": [{"id": "CG.TABLE.PARTIES.AGREEMENTS VW", "name": "Customized Table Parties and Agreements", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1258, "metadata_element_list": [{"id": "CG.FIELD.AGREEMENT NUMBER VW", "name": "Agreement Number ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Number ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_NUMBER", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT DESCRIPTION VW", "name": "Agreement Description ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Description ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_DESCRIPTION", "data_length": 2000, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT START DATE VW", "name": "Agreement Start Date ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Start Date ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_START_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT END DATE VW", "name": "Agreement End Date ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement End Date ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_END_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY NAME VW", "name": "Party Name ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Name ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_NAME", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY ROLE VW", "name": "Party Role ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Role ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_ROLE", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY EMAIL ADDRESS VW", "name": "Party Email Address ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Email Address ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_EMAIL_ADDRESS", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY PHONE NUMBER VW", "name": "Party Phone Number ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Phone Number ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_PHONE_NUMBER", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PRIMARY PARTY CONTACT VW", "name": "Primary Party Contact ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Primary Party Contact ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PRIMARY_PARTY_CONTACT", "data_length": 200, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 8, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "ARTESIA.CATEGORY.VIDEO ATTRIBUTES", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 0, "metadata_element_list": [{"id": "ARTESIA.FIELD.VIDEO.FRAMERATE", "name": "Framerate", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 25.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Framerate", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": false, "data_type": "NUMBER", "facetable": false, "searchable": false, "table_name": "VIDEO_PARENT_ASSETS", "column_name": "FRAMERATE", "data_length": 0, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.VIDEO.START SMPTE", "name": "Start Time SMPTE", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00:00:00:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Start Time SMPTE", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "VIDEO_ASSETS", "column_name": "START_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.END SMPTE", "name": "End Time SMPTE", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00:00:09:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "End Time SMPTE", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "VIDEO_ASSETS", "column_name": "END_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.START MSEC", "name": "Start Time MSEC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Start Time MSEC", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": false, "data_type": "NUMBER", "facetable": false, "searchable": false, "table_name": "VIDEO_ASSETS", "column_name": "START_MSEC", "data_length": 0, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.VIDEO.END MSEC", "name": "End Time MSEC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 9040}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "End Time MSEC", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": false, "data_type": "NUMBER", "facetable": false, "searchable": false, "table_name": "VIDEO_ASSETS", "column_name": "END_MSEC", "data_length": 0, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.VIDEO.CLIP PARENT ID", "name": "Clip Parent Id", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Clip Parent Id", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": false, "data_type": "CHAR", "facetable": false, "searchable": false, "table_name": "VIDEO_ASSETS", "column_name": "PARENT_UOI_ID", "data_length": 40, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.VIDEO.LOW RES MIME TYPE", "name": "Low Resolution Mimetype", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "video/mp4"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Low Resolution Mimetype", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": false, "data_type": "CHAR", "facetable": false, "searchable": false, "table_name": "VIDEO_URLS", "column_name": "LO_RES_MIME_TYPE", "data_length": 80, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.VIDEO.VIDEO REFERENCE", "name": "Video Reference", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 36313}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Reference", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": false, "data_type": "NUMBER", "facetable": false, "searchable": false, "table_name": "VIDEO_ASSETS", "column_name": "VIDEO_REFERENCE", "data_length": 0, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.VIDEO.DURATION MSEC", "name": "Duration MSEC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 9040}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Duration MSEC", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": false, "data_type": "NUMBER", "facetable": false, "searchable": false, "table_name": "VIDEO_ASSETS", "column_name": "DURATION_MSEC", "data_length": 0, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.VIDEO.DURATION SMPTE", "name": "Duration SMPTE", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00:00:09:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Duration SMPTE", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": false, "data_type": "CHAR", "facetable": false, "searchable": false, "table_name": "VIDEO_ASSETS", "column_name": "DURATION_SMPTE", "data_length": 11, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.VIDEO.CLIP PARENT START SMPTE", "name": "Clip Parent Start Time SMPTE", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Clip Parent Start Time SMPTE", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "VIDEO_ASSETS", "column_name": "PARENT_START_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}], "has_multilingual_fields": false}, "mime_type": "video/mp4", "path_list": [{"parents": [{"id": "d4d9835db002b9992125246f2abb7117c99ab016", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "d4d9835db002b9992125246f2abb7117c99ab016", "sequence_number": 0}, {"id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "name": "MASTER CAMP FER ROCHER 12.01.2", "container_state": "NORMAL", "original_uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "sequence_number": 0}, {"id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "name": "01. DE - Rocher ", "container_state": "NORMAL", "original_uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "sequence_number": 0}, {"id": "091216b59cad7f1ea815164c26db27e350c54023", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "sequence_number": 0}, {"id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "name": "01. Rocher", "container_state": "NORMAL", "original_uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "sequence_number": 0}, {"id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "name": "01. Ferrero Rocher", "container_state": "NORMAL", "original_uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "sequence_number": 0}, {"id": "93b0968611de11160ed068afeb9930b9965bd5ff", "name": "03. Premium Chocolate", "container_state": "NORMAL", "original_uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "sequence_number": 0}, {"id": "4b05a895330aa2fb6046f59731aba5dd93858431", "name": "LOCADAPLOCCOMM - FER ROCHER 4", "container_state": "NORMAL", "original_uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "sequence_number": 0}, {"id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "name": "25-26", "container_state": "NORMAL", "original_uoi_id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "sequence_number": 0}, {"id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "name": "02. Campaign", "container_state": "NORMAL", "original_uoi_id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "sequence_number": 0}, {"id": "f31042cfc487f066486c46527c076b8ee6618ceb", "name": "01. Standard", "container_state": "NORMAL", "original_uoi_id": "f31042cfc487f066486c46527c076b8ee6618ceb", "sequence_number": 0}, {"id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "name": "02. Sweden", "container_state": "NORMAL", "original_uoi_id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "sequence_number": 0}, {"id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "name": "SCANDINAVIA", "container_state": "NORMAL", "original_uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "sequence_number": 0}, {"id": "f2649309eb916c5c25bb309e3db061042c3eecca", "name": "01. MC - Rocher", "container_state": "NORMAL", "original_uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "sequence_number": 0}, {"id": "091216b59cad7f1ea815164c26db27e350c54023", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "sequence_number": 0}, {"id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "name": "01. Rocher", "container_state": "NORMAL", "original_uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "sequence_number": 0}, {"id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "name": "01. Ferrero Rocher", "container_state": "NORMAL", "original_uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "sequence_number": 0}, {"id": "93b0968611de11160ed068afeb9930b9965bd5ff", "name": "03. Premium Chocolate", "container_state": "NORMAL", "original_uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "sequence_number": 0}], "complete": true, "sequence_number": 2, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "d4d9835db002b9992125246f2abb7117c99ab016", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "d4d9835db002b9992125246f2abb7117c99ab016", "sequence_number": 0}, {"id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "name": "MASTER CAMP FER ROCHER 12.01.2", "container_state": "NORMAL", "original_uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "sequence_number": 0}, {"id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "name": "01. DE - Rocher ", "container_state": "NORMAL", "original_uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "sequence_number": 0}, {"id": "bfbc248a12a4bf0382406620f0d9ec41ff42e35e", "name": "01. Ferrero Rocher", "container_state": "NORMAL", "original_uoi_id": "bfbc248a12a4bf0382406620f0d9ec41ff42e35e", "sequence_number": 0}, {"id": "3d7debea6815ae46c9598191b1c645007666292a", "name": "03 . Premium Chocolate", "container_state": "NORMAL", "original_uoi_id": "3d7debea6815ae46c9598191b1c645007666292a", "sequence_number": 0}, {"id": "c0bb10be2b8f96ee4d27a2dfb7e0d03de68cf114", "name": "DE", "container_state": "NORMAL", "original_uoi_id": "c0bb10be2b8f96ee4d27a2dfb7e0d03de68cf114", "sequence_number": 0}, {"id": "b124e1ed196028bdd0e2c093e28078ca8d9ad462", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "b124e1ed196028bdd0e2c093e28078ca8d9ad462", "sequence_number": 0}, {"id": "68ce80e8c8a30badb82dabfd823886a6fa6fe309", "name": "Y - Geography", "container_state": "NORMAL", "original_uoi_id": "68ce80e8c8a30badb82dabfd823886a6fa6fe309", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "sequence_number": 0}, {"id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "name": "Read Only", "container_state": "NORMAL", "original_uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "sequence_number": 0}, {"id": "23b155c32d5c6142914b41458234c100812bbec8", "name": "Oliver", "container_state": "NORMAL", "original_uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "sequence_number": 0}, {"id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "name": "Z - Exchange", "container_state": "NORMAL", "original_uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "sequence_number": 0}], "complete": true, "sequence_number": 2, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}], "creator_id": "1003", "asset_state": "NORMAL", "checked_out": false, "folder_path": "", "content_size": 3080691, "content_type": "VIDEO", "content_state": "NORMAL", "date_imported": "2026-01-14T14:23:41.74+01:00", "import_job_id": 225736, "streaming_url": "https://ppr.dam.ferrero.com/video/data/repository/original/vol0/227/0519db2862ae6ca92d8c1c366647880e178494ac_proxy.mp4", "subscribed_to": false, "collection_ids": [], "latest_version": true, "legacy_model_id": 116, "content_editable": true, "content_sub_type": "WHOLE", "import_user_name": "bizAdmin", "date_last_updated": "2026-01-14T14:28:02.513+01:00", "metadata_model_id": "ECOMMERCE", "original_asset_id": "6341dedf8117677336cb66fa9a7ce94c4c2d10d1", "rendition_content": {"preview_content": {"id": "38b08a5df7d408745c122ee7df0675ffbb74258b", "url": "/otmmapi/v6/renditions/38b08a5df7d408745c122ee7df0675ffbb74258b", "name": "kinder-joy_videoE2E.mp4", "width": 640, "height": 360, "mime_type": "video/mp4", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "PREVIEW", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\227\\\\0519db2862ae6ca92d8c1c366647880e178494ac_proxy.mp4", "content_size": 1177223, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "thumbnail_content": {"id": "1b785415362dd9a5f56e632d76bb7492c88c50c8", "url": "/otmmapi/v6/renditions/1b785415362dd9a5f56e632d76bb7492c88c50c8", "name": "1b785415362dd9a5f56e632d76bb7492c88c50c8.jpg", "width": 500, "height": 282, "mime_type": "image/jpeg", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "THUMBNAIL", "content_path": "data\\\\repository\\\\thumb\\\\vol0\\\\201\\\\1b785415362dd9a5f56e632d76bb7492c88c50c8_1b785415362dd9a5f56e632d76bb7492c88c50c8.jpg", "content_size": 13491, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "video_rollover_content": {"id": "996b4cc7451dfd5ed970534d0c69a34c3d0f87b5", "url": "/otmmapi/v6/renditions/996b4cc7451dfd5ed970534d0c69a34c3d0f87b5", "name": "kinder-joy_videoE2E.GIF", "width": 500, "height": 282, "mime_type": "image/gif", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "ROLLOVER", "content_path": "data\\\\repository\\\\rollover\\\\vol0\\\\16\\\\996b4cc7451dfd5ed970534d0c69a34c3d0f87b5_rollover.gif", "content_size": 4110720, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_content_info": {"master_content": {"id": "cbeb3d5f63f41cd6ff573003da1acaf7889e7de1", "url": "/otmmapi/v6/renditions/cbeb3d5f63f41cd6ff573003da1acaf7889e7de1", "name": "kinder-joy_videoE2E.mp4", "width": -1, "height": -1, "mime_type": "video/mp4", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\227\\\\kinder-joy_videoE2E_cbeb3d5f63f41cd6ff573003da1acaf7889e7de1.mp4", "content_size": 3080691, "unit_of_size": "BYTES", "content_checksum": "b36d1e9f85efe2c69693dde123d6c3b2", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "supporting_content": [{"id": "0519db2862ae6ca92d8c1c366647880e178494ac", "url": "/otmmapi/v6/renditions/0519db2862ae6ca92d8c1c366647880e178494ac", "name": "kinder-joy_videoE2E.mp4", "width": 640, "height": 360, "mime_type": "video/mp4", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "SUPPORTING", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\227\\\\0519db2862ae6ca92d8c1c366647880e178494ac_proxy.mp4", "content_size": 1177223, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}]}, "asset_state_user_id": "1003", "master_content_info": {"id": "cbeb3d5f63f41cd6ff573003da1acaf7889e7de1", "url": "/otmmapi/v6/renditions/cbeb3d5f63f41cd6ff573003da1acaf7889e7de1", "name": "kinder-joy_videoE2E.mp4", "width": -1, "height": -1, "mime_type": "video/mp4", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\227\\\\kinder-joy_videoE2E_cbeb3d5f63f41cd6ff573003da1acaf7889e7de1.mp4", "content_size": 3080691, "unit_of_size": "BYTES", "content_checksum": "b36d1e9f85efe2c69693dde123d6c3b2", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "delivery_service_url": "https://ppr.dam.ferrero.com/adaptivemedia/rendition?id=6341dedf8117677336cb66fa9a7ce94c4c2d10d1", "product_associations": false, "security_policy_list": [{"id": 5467, "name": "Marketing Viewer", "status": "NORMAL", "created_by": "1003", "create_date": "2023-10-06T16:52:07.297+02:00", "description": "Marketing Viewer", "ownership_type": "PUBLIC"}, {"id": 9525, "name": "Premium Chocolate Local DE Editable Ferrero Rocher", "status": "NORMAL", "created_by": "1003", "create_date": "2024-11-26T10:08:39.973+01:00", "description": "Premium Chocolate Local DE Editable Ferrero Rocher", "ownership_type": "PUBLIC"}], "thumbnail_content_id": "1b785415362dd9a5f56e632d76bb7492c88c50c8", "content_state_user_id": "1003", "content_state_user_name": "OTMM BusinessAdmin", "asset_lock_state_user_id": "1003", "metadata_state_user_name": "OTMM BusinessAdmin", "progressive_download_url": "https://ppr.dam.ferrero.com/video/data/repository/original/vol0/227/0519db2862ae6ca92d8c1c366647880e178494ac_proxy.mp4", "access_control_descriptor": {"permissions_map": {"entry": [{"key": "text.securityPolicy.permission.Custom04Permission", "value": true}, {"key": "text.securityPolicy.permission.ContentEditPermission", "value": true}, {"key": "text.securityPolicy.permission.AssetViewPermission", "value": true}, {"key": "text.securityPolicy.permission.ProjectViewPermission", "value": true}, {"key": "text.securityPolicy.permission.MembershipEditPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom03Permission", "value": true}, {"key": "text.securityPolicy.permission.MetaDataEditPermission", "value": true}, {"key": "text.securityPolicy.permission.EditParentsPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom02Permission", "value": true}, {"key": "text.securityPolicy.permission.ExportPermission", "value": true}, {"key": "text.securityPolicy.permission.SummaryViewPermission", "value": true}, {"key": "text.securityPolicy.permission.PreviewViewPermission", "value": true}, {"key": "text.securityPolicy.permission.SubscribePermission", "value": true}, {"key": "text.securityPolicy.permission.DeleteAssetPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom01Permission", "value": true}]}}, "content_lock_state_user_id": "1003", "asset_state_last_update_date": "2026-01-14T14:28:02.513+01:00", "content_lock_state_user_name": "bizAdmin", "metadata_lock_state_user_name": "bizAdmin", "content_state_last_update_date": "2026-01-14T14:23:41.99+01:00", "inherited_metadata_collections": [{"container_id": "d4d9835db002b9992125246f2abb7117c99ab016", "container_name": "05. Final Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "d4d9835db002b9992125246f2abb7117c99ab016", "originator_id": "d4d9835db002b9992125246f2abb7117c99ab016", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "05. Final Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "container_name": "MASTER CAMP FER ROCHER 12.01.2", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "MASTER CAMP FER ROCHER 12.01.2"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000783"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "MASTER_CAMP_FER_ROC_CQ_LG_DE_PRE_0000783"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local comm on global brands"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Master Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Master Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2026/2027"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "B1"}, "display_value": "Master campaign ready for re-mastering", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ADDITIONALAPPROVER", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.LICENSING", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "d0ef653291e269a7d1ddf0ebfedd1c6ad70b1c59"}, "metadata_element": {"id": "FERRERO.FIELD.LICENSING", "name": "Campaign License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "LICENSING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}}]}, {"container_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "container_name": "01. DE - Rocher ", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "bb01cf85444107f22341d2b88421f0cbaade0bf9"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E006"}, "display_value": "GERMANY", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Local DE Editable Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Premium Chocolate Local DE Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "8f497ce53d23899c7c09aa5a7ca69c9f55c3a62d"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E64"}, "display_value": "GERMANY", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "ca70a6d55e4277ecbef2a01a593c614501cbcf74"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "3e9d669ab1047383d0416ba40af75744148c94c8"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0e241fc386dcd91baa31a409e297169fe4a352c2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "2e3e0f2be0e487b540d9b63cb8c0e9ed9c6b1bb6"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "359c98154f230a60acc6b4eb048e129411d7a778"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "b3698893fc223e8371f4e4c0d560d0536c724a09"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "e92f9f10c0c29dda8261218c2c72a0baa66472f2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "15dff42c3b196ba3ae5b3c2ea33f00e347e6f654"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Extended Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0ae044cd9dddf86cd9406c9edc3996b18c430be0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "name": "AMMC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AMMC", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LOCAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "7806fed6127b50c21f6b03e1f7b63f3dedc1e8d1"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "RMMC", "values": [{"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "4c8a2d6e178638bfacfeaf3f7f6f1000304693a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "name": "Product Asset Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Product Asset Approval Ferrero Rocher Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Asset Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCT_ASSET_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local comm on global brands"}, "display_value": "Local comm on global brands", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "5a1ae26558efdc03336c0df838dd9e7c2a51c687"}, "metadata_element": {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "name": "Market Unit", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market Unit", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETUNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "MARKET_UNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "091216b59cad7f1ea815164c26db27e350c54023", "container_name": "EU", "container_type_id": "GEOGRAPHYLOCAL", "container_type_name": "L4 - GEOGRAPHY LOCAL", "inherited_metadata_values": [{"id": "FERRERO.MARKET.FOLDER.GLOBAL", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "4c4d4bf36bf8b1ace55f990e78d6332a9cb20990"}, "metadata_element": {"id": "FERRERO.MARKET.FOLDER.GLOBAL", "name": "Global/Local (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "LOCAL"}, "display_value": "Local", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local (Marketing)", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "GLOBALLOCAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_AREA", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "3dc200c993ab8263952dc6da1498026f615f45dd"}, "metadata_element": {"id": "MARKETING_AREA", "name": "AREA", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E010"}, "display_value": "EUROPE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "AREA", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "AREA", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "AREA", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "dc7749c3e113ec9e0b9e9a3840ea55673ca5e49f"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "f2d658a3829c2ea158ae70a4b4e7928bcf88f8e2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "972d0258a82de85672bd84d8af68cdb67ad3d3ca"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "1212505ad3fe4c9d7458568f3d95aeb4c4e5c37e"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "9d1dfdef55ff7a3eb03552988ddf729c7a0f5107"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "54f006eeb366121a29ee98da33d437615dcd34e0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "1fd8802010e30d44cebb2f3eb090b12ac550f97d"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "8b6e1d8f7dc3c4671cfc11a2914d838ca3ee3f3b"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "be0dc9a87262ee7fd165237b531ba3b7aa93a260"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "2f99f0f0f9e43fb34df9222c8b73a86fb78e473e"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "container_name": "01. Rocher", "container_type_id": "GLOBALBRAND", "container_type_name": "L3 - BRAND", "inherited_metadata_values": [{"id": "FERRERO.TABULAR.NEW.BRAND", "tabular": true, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "9bb1c183135f5240f09132aef59c4ea48c762381"}, "metadata_element": {"id": "FERRERO.TABULAR.NEW.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF04"}, "display_value": "ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND (Marketing)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF04"}, "display_value": "ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "BRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TABULAR_BRAND", "column_name": "BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.NEW.BRAND", "parent_table_name": "BRAND (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "tabular": true, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "a37b13c02cba799378211e17b73234a0d836f9b6"}, "metadata_element": {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "CQ"}, "display_value": "FERRERO ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND(HARMONIZED)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "CQ"}, "display_value": "FERRERO ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.HARMONIZEDBRAND", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_HARMONIZEDBRAND", "column_name": "HARMONIZEDBRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.HARMONIZEDBRAND", "parent_table_name": "BRAND(HARMONIZED)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "AGENCY.COLLABORATION", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "183d6e0957a9940f9b18ef44f46d957802b63397"}, "metadata_element": {"id": "AGENCY.COLLABORATION", "name": "Agency collaboration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency collaboration", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "AGENCY_COLLABORATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "AGENCY.SHARING", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "d0e2b725ddfdc452cc3ba750bbe8ec059c6b01ba"}, "metadata_element": {"id": "AGENCY.SHARING", "name": "Agency sharing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency sharing", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "AGENCY_SHARING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "CONTENT.SCALING.AGENCYNAME", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "f9dfa695cc5ef8cd3fafada4e44cfdaa1522d58a"}, "metadata_element": {"id": "CONTENT.SCALING.AGENCYNAME", "name": "Content Scaling agency name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Scaling agency name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENTSCALING_AGENCYNAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "container_name": "01. Ferrero Rocher", "container_type_id": "GLOBALSUBCATEGORY", "container_type_name": "L2 - SUBCATEGORY", "inherited_metadata_values": [{"id": "MARKETING_SUBCATEGORY", "tabular": false, "value_id": {"uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "originator_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "inherited_field_id": "3000ad591e09b5c75f85fc2ccbb9ebeb31b3ab78"}, "metadata_element": {"id": "MARKETING_SUBCATEGORY", "name": "SUBCATEGORY", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Mart-Ferrero-Rocher"}, "display_value": "Ferrero Rocher", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "SUBCATEGORY", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "SUBCATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "SUBCATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "tabular": true, "value_id": {"uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "originator_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "inherited_field_id": "2c751ce760d88c0e271925ea5149348106944bfa"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Subcategory Owner", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_SUBCATEGORY_OWNER_TM", "column_name": "SUBCATEGORY_OWNER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "parent_table_name": "Subcategory Owner", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "container_name": "03. Premium Chocolate", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "originator_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E06"}, "display_value": "PREMIUM CHOCOLATE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "originator_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final Approver BPS ", "values": [{"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "container_name": "00. Master Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "originator_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00. Master Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "container_name": "LOCADAPLOCCOMM - FER ROCHER 4", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "LOCADAPLOCCOMM - FER ROCHER 4"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000794"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "LOCADAPLOCCOMM_-__CQ_LAL_MLT_PRE_0000794"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local adaptation of local comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Master Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000783"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Master Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "DK"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "DK"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "SE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "FI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "NO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "IS"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "GL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2025/2026"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2797"}, "display_value": "Owner, Asset (AssetownerLoG, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2797"}, "display_value": "Owner, Asset (AssetownerLoG, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2797"}, "display_value": "Owner, Asset (AssetownerLoG, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2797"}, "display_value": "Owner, Asset (AssetownerLoG, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "A1"}, "display_value": "Local Campaign ready for localization", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ADDITIONALAPPROVER", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.LICENSING", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "d0ef653291e269a7d1ddf0ebfedd1c6ad70b1c59"}, "metadata_element": {"id": "FERRERO.FIELD.LICENSING", "name": "Campaign License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "LICENSING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}}]}, {"container_id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "container_name": "25-26", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "originator_id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "25-26"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "container_name": "02. Campaign", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "originator_id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "02. Campaign"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "f31042cfc487f066486c46527c076b8ee6618ceb", "container_name": "01. Standard", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "f31042cfc487f066486c46527c076b8ee6618ceb", "originator_id": "f31042cfc487f066486c46527c076b8ee6618ceb", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "01. Standard"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "container_name": "02. Sweden", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "originator_id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "02. Sweden"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "container_name": "SCANDINAVIA", "container_type_id": "GLOBALMARKETUNIT", "container_type_name": "L6 - MARKET UNIT", "inherited_metadata_values": [{"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "24a6615bcce9adc5a098c76c29b8e8baba61a9a3"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E22"}, "display_value": "SCANDINAVIA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "13063087b81ea172db42e69ed8e8fa013cd5bfe0"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Local SCANDINAVIA Editable Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "bf49ba2a40d0d0dccee4d5de7381659b106dd89a"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Premium Chocolate Local SCANDINAVIA Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "8e4d311466783d8215a38b08bee3cb2b3bfcf40f"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "9e88b5726590ab30642999a28a301e3fbcebc762"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "name": "Published Security Policy - Restricted Visibility", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Security Policy - Restricted Visibility", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_VISIBILITY_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "3c0070e420882e3e18f6097811cb60a67239003b"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local SCANDINAVIA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "7f3c1933b61e900457ea6e2aab750303882873d4"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "b0c960759e48c0fcdcb650417179a614da95e866"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Local SCANDINAVIA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "6f603fcc63415e266dc35cf2314d31357a2966bf"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "3c12728b06ecfafeeb74482ea7b7296b180765f9"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "dc9b8ffa0591a1b2956c07fa5dc10ff477c84f4e"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "495fa4f08769a021cfa907dfb7a903fade9bd19a"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "e3b647e172a89e1e7cbdd2964faff1bca8dcf520"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "6870cca056b54cd400a9fbd4fe75513e69cedcdd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "RMMC", "values": [{"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "container_name": "01. MC - Rocher", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "bb01cf85444107f22341d2b88421f0cbaade0bf9"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E023"}, "display_value": "MULTI COUNTRY EUROPE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "8f497ce53d23899c7c09aa5a7ca69c9f55c3a62d"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E22"}, "display_value": "SCANDINAVIA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "ca70a6d55e4277ecbef2a01a593c614501cbcf74"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "3e9d669ab1047383d0416ba40af75744148c94c8"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "0e241fc386dcd91baa31a409e297169fe4a352c2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "2e3e0f2be0e487b540d9b63cb8c0e9ed9c6b1bb6"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "359c98154f230a60acc6b4eb048e129411d7a778"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "b3698893fc223e8371f4e4c0d560d0536c724a09"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "e92f9f10c0c29dda8261218c2c72a0baa66472f2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "15dff42c3b196ba3ae5b3c2ea33f00e347e6f654"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "0ae044cd9dddf86cd9406c9edc3996b18c430be0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "name": "AMMC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AMMC", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LOCAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "7806fed6127b50c21f6b03e1f7b63f3dedc1e8d1"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "RMMC", "values": [{"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "4c8a2d6e178638bfacfeaf3f7f6f1000304693a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "name": "Product Asset Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Asset Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCT_ASSET_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of local comm"}, "display_value": "Local adaptation of local comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of local comm"}, "display_value": "Local adaptation of local comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "5a1ae26558efdc03336c0df838dd9e7c2a51c687"}, "metadata_element": {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "name": "Market Unit", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market Unit", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETUNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "MARKET_UNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "container_name": "Read Only", "container_type_id": "L3 - Agency Structure", "container_type_name": "L3 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "55530f721f18c847e35d7c828edf53461b5014b0"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "330bb6f68316aab5c45f9fe34e047cce573c67cc"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "name": "Agency Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "AGENCY_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "e30e90d694f9935d4c15c4c78891beed8853a272"}, "metadata_element": {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "name": "Published Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "PUBLISHED_ASSET_SP_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "23b155c32d5c6142914b41458234c100812bbec8", "container_name": "Oliver", "container_type_id": "L2 - Agency Structure", "container_type_name": "L2 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.AGENCY", "tabular": false, "value_id": {"uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "originator_id": "23b155c32d5c6142914b41458234c100812bbec8", "inherited_field_id": "48fcbc397986aca5bb8722a95197dd0a46f19b4e"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_AGENCY", "column_name": "AGENCY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "container_name": "Z - Exchange", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "YY"}, "display_value": "AGENCIES", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Final Approver BPS ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}], "asset_lock_state_last_update_date": "2026-01-14T14:28:20.48+01:00", "content_lock_state_last_update_date": "2026-01-14T14:23:42.103+01:00"} \N \N active f \N \N 2026-01-16 20:41:31.151467 2026-01-16 20:41:31.151467 2026-01-16 20:41:31.151467 15 MKWzht a195f04ddd6a78d22fdf4953b46f9210d50b70a8 kinder joy 2 .jpg \N image/jpeg \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 90962e8228075df2ada17d7fb668aaca95c87092 Box File ID: 2105225346520\nBox URL: https://app.box.com/file/2105225346520\nDAM Asset ID: a195f04ddd6a78d22fdf4953b46f9210d50b70a8 {"name": "kinder joy 2.jpg", "links": {"links": [], "source_id": "a195f04ddd6a78d22fdf4953b46f9210d50b70a8"}, "locked": false, "deleted": false, "expired": false, "version": 1, "asset_id": "a195f04ddd6a78d22fdf4953b46f9210d50b70a8", "metadata": {"id": "ECOMMERCE", "name": "Marketing Asset", "type": "com.artesia.metadata.MetadataModel", "legacy_id": 116, "metadata_element_list": [{"id": "FERRERO.CATEGORY.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200054, "metadata_element_list": [{"id": "FERRERO.FIELD.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Status", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.CONTENT_STATUS", "edit_type": "COMBO_NOTNULL", "facetable": false, "searchable": true, "table_name": "FERRERO_CONTENT_STATUS_MD", "column_name": "CONTENT_STATUS", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9215, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRER.CATEGORY.ASSET_INFO", "name": "Asset Info", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200022, "metadata_element_list": [{"id": "FERRERO.FIELD.MKTG.ASSET TYPE", "name": "Asset Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "brandbook"}, "display_value": "Brand Book", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.ASSETTYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.FISCAL YEAR", "name": "Release Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2028/2029"}, "display_value": "2028/2029", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Release Fiscal Year", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_DOMAIN_FISCAL_YEAR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "FISCAL__YEAR", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "name": "Main Languages", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1210, "metadata_element_list": [{"id": "MAIN_LANGUAGES", "name": "MAIN LANGUAGES", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "MAIN LANGUAGES", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MAIN LAGUAGES_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MAIN_LANGUAGE_TABLE", "column_name": "MAIN_LANGUAGE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "parent_table_name": "Main Languages", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.ASSET DESCRIPTION", "name": "Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Description", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "DESCR", "data_length": 249, "description": "Descriptive information", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.FLAVOUR", "name": "Flavour", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Flavour", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.FLAVOUR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FLAVOUR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.SIZE", "name": "Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Size", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.SIZE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SIZE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1241, "metadata_element_list": [{"id": "FERRERO.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Compliance", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ASSETCOMPLIANCE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_COMPLIANCE", "column_name": "ASSET_COMPLIANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "parent_table_name": "Asset Compliance", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.TAG DETAILS", "name": "Tag Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 118, "metadata_element_list": [{"id": "ARTESIA.FIELD.TAG", "name": "Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "food", "field_value": {"type": "string", "value": "food"}, "display_value": "food", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Tag", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "food", "field_value": {"type": "string", "value": "food"}, "display_value": "food", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "candy", "field_value": {"type": "string", "value": "candy"}, "display_value": "candy", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "text", "field_value": {"type": "string", "value": "text"}, "display_value": "text", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "ball", "field_value": {"type": "string", "value": "ball"}, "display_value": "ball", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.TAGS", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "OTMM_TAGS", "column_name": "TAG", "data_length": 80, "description": "Tag", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG CONFIDENCE", "name": "Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 85.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Confidence", "values": [{"value": {"type": "decimal", "value": 85.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 76.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 61.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 60.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Confidence", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG TYPE", "name": "Tag Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Tag Type", "values": [{"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "TAG_TYPE", "data_length": 10, "description": "Tag Type", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED BY", "name": "Associated By", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Associated By", "values": [{"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_BY", "data_length": 10, "description": "Associated By", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED DATE", "name": "Associated Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-09T16:32:11.107+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Associated Date", "values": [{"value": {"type": "dateTime", "value": "2026-01-09T16:32:11.107+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2026-01-09T16:32:11.107+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2026-01-09T16:32:11.11+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2026-01-09T16:32:11.11+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_DATE", "data_length": 10, "description": "Associated Date", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.STATE", "name": "Global/Local", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "GLOBAL"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO_NOTNULL", "facetable": true, "searchable": true, "table_name": "FERRERO_IC_ASSET_DETAILS", "column_name": "ASSET_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.ASPECT RATIO", "name": "Aspect Ratio (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio (Marketing)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASPECT_RATIO", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASPECT_RATIO", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "name": "Tag (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1222, "metadata_element_list": [{"id": "MARKETING_TAG", "name": "Marketing Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Marketing Tag", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.DOMAIN.TAG", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TAG_MARKET", "column_name": "TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "parent_table_name": "Tag (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.TAGS", "name": "Auto-Generated Tags", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Auto-Generated Tags", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "AUTO_GENERATED_TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CERTIFIER", "name": "Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approver", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.MARKETING.FIELD.APPROVAL DATE", "name": "Approval__Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approval__Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.LEGAL APPROVAL DATE", "name": "Legal Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CERTIFIER", "name": "IA&CC Certifier", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Certifier", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CC APPROVAL DATE", "name": "IA&CC Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "name": "Extended Approval", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1230, "metadata_element_list": [{"id": "FERRERO.FIELD.EXTENDED.APPROVAL", "name": "Extended Approval required by:", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended Approval required by:", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COMMENTS", "name": "Comment", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comment", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "COMMENTS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.DATE", "name": "Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USERS", "name": "User ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "User ID", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "USERS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXTENDED.JOBID", "name": "Extended JobID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended JobID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.MIGRATION.INDEX", "name": "Migration Index", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Migration Index", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MIGRATION.INDEX", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MIGRATION_INDEX", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "FERRERO_MARKET_MARKETING_CREATOR", "name": "Marketing Creator", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Marketing Creator", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.CREATOR", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MARKETING_CREATOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "ARTESIA.FIELD.IS LATEST VERSION", "name": "Is Latest Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Y"}, "display_value": "Yes", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Is Latest Version", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.YES_NO", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "IS_LATEST_VERSION", "data_length": 1, "description": "Is this the latest version? (Y/N)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET VERSION", "name": "Asset Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 1}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Version", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "INTEGER", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "VERSION", "data_length": 12, "description": "Version number of asset", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET_ID", "name": "Asset ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "a195f04ddd6a78d22fdf4953b46f9210d50b70a8"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset ID", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "LOGICAL_UOI_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.ECOMMERCE STATUS", "name": "Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "PENDING"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Status", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "ASSET_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CREATOR", "name": "Uploaded by", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Uploaded by", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_USER_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.FIELD.CREATION DATE", "name": "Upload Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-09T16:31:22.767+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Upload Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_DT", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.ASSET NAME", "name": "Asset Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "kinder joy 2.jpg"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Name", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "description": "Original name of master object", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.CONTENT TYPE", "name": "Content Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "BITMAP"}, "display_value": "Image", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Type", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.CONTENT_TYPES", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "CONTENT_TYPE", "data_length": 8, "description": "Content Type", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.MIME TYPE", "name": "File Extension", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "image/jpeg"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Extension", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_MIME_TYPE", "data_length": 80, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.FILE.SIZE", "name": "File Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "long", "value": 13800}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Size", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "LONG", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_SIZE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP RESOLUTION", "name": "Bitmap Resolution", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 72}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Resolution", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_RESOLUTION", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP WIDTH", "name": "Bitmap Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 265}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Width", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_WIDTH", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP HEIGHT", "name": "Bitmap Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 190}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Height", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_HEIGHT", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "name": "Approval Metadata", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1249, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.DEPARTMENT", "name": "Department", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Department", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "DEPARTMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.CERTIFIER", "name": "Certifier", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Certifier", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL DATE", "name": "Approval Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Approval Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "APPROVAL_DATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.COMMENT", "name": "Comments", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comments", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "COMMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.TYPE OF APPROVAL", "name": "Type of Approval", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Approval", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "TYPE_OF_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL STATUS", "name": "Approval Status", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Approval Status", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "APPROVAL_STATUS", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.SUB JOBID", "name": "Sub Job Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sub Job Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.VIDEO.BIT_RATE", "name": "Bitrate", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitrate", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "BIT_RATE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.EMBEDDED.FIELD.DURATION", "name": "Duration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Duration", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "DURATION_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.ASPECT RATIO", "name": "Aspect Ratio", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "ASPECT_RATIO", "data_length": 30, "displayable": false, "instructions": "ASPECT_RATIO", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME HEIGHT", "name": "Frame Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Height", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_HEIGHT", "data_length": 12, "displayable": true, "instructions": "FRAME_HEIGHT", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME WIDTH", "name": "Frame Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Width", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_WIDTH", "data_length": 12, "displayable": true, "instructions": "FRAME_WIDTH", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.ASPECT.RATIO.POC", "name": "Aspect Ratio(POC)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio(POC)", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASPECT_RATIO_TABLE", "column_name": "ASPECT_RATIO", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "PRODUCT.DETAILS", "name": "Product Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200029, "metadata_element_list": [{"id": "FERRERO.TABLE.EANCODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1208, "metadata_element_list": [{"id": "EAN_CODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "EAN CODE/ 77 CODE", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "EAN.CODE", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "EAN_CODE", "column_name": "EAN_CODE_DESCRIPTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "COUNTRY", "name": "COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "EAN_CODE", "column_name": "COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKETING.ADVANCE.PRODUCT.LINK", "name": "Asset-to-product relation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset-to-product relation", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_MARKETING_ADVANCE_PRODUCT_LINK", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ADVANCE_PRODUCT_LINK", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 10182, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.SUB BRAND", "name": "Sub-Brands", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Sub-Brands", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.SUBBRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "SUB_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT WEIGHT", "name": "Product Weight", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Weight", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_WEIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.CONSUMER UNIT PACKAGING", "name": "Consumer Unit Packaging", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Consumer Unit Packaging", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PACK", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "CONSUMER_UNIT_PACKAGING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.4 DIGIT CODE", "name": "4 Digit Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "4 Digit Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "DIGITCODE", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERREO.ECOM.RETAILER_SPECIFIC_FIELD", "name": "Retailer Specific", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Retailer Specific", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "RETAILER_SPECIFIC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "cascading_group_id": "FERRERO.RETAILER.SPECIFIC", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY START PERIOD", "name": "Asset validity start period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-11T00:00:00+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity start period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_STARTING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY END PERIOD", "name": "Asset validity end period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-03-31T00:00:00+02:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity end period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_ENDING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.ASSET.NAMING.CONVENTION", "name": "Does asset need GS1 naming convention", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Does asset need GS1 naming convention", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASSETNAMINGCONVENTION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_NAMING_CONVENTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9515, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT VIEW", "name": "Product View", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product View", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT VIEW", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_VIEW", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT ANGLE", "name": "Product Angle", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Angle", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT.ANGLE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_ANGLE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT STATE", "name": "Product State", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product State", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT STATE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PROMOTION ID", "name": "Promo ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Promo ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROMO_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.BUSINESS.ASSET TYPE", "name": "Asset Type (eDAM)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Type (eDAM)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "OTMM.DOMAIN.OTMM_ASSETTYPE_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_BUSINESS_INFO", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7244, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200048, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.AGENCY NAME", "name": "Agency Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency Name", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.AGENCY_NAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AGENCY_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7336, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.CREATIX", "name": "CreativeX", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200059, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.CREATIVEX", "name": "Confidence", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1245, "metadata_element_list": [{"id": "FERRERO.TAB.FIELD.CREATIVEX", "name": "Platform > Rating (%)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Platform > Rating (%)", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_CREATIVEX", "column_name": "CREATIVEX_NEW", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CREATIVEX", "parent_table_name": "Confidence", "cascading_group_id": "FERRERO.CREATIVEX.CHAR", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.CREATIVEX LINK", "name": "CreativeX Hyperlink", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "CreativeX Hyperlink", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_CREATIVEX", "column_name": "CREATIVE_LINK", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.IP_RIGHTS", "name": "IP Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200046, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.IPRIGHT", "name": "IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IP Rights", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.IPRIGHTS", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IP_RIGHTS", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.BUYOUT", "name": "Touchpoint Scope", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Touchpoint Scope", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.TOTAL_BUYOUT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TOTAL_BUYOUT", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.FERRERO PROPERTY", "name": "Ferrero Property", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Ferrero Property", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.FERRERO_PROPERTY", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FERRERO_PROPERTY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200035, "metadata_element_list": [{"id": "FERRERO.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1209, "metadata_element_list": [{"id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "name": "IP Coverage, Area, Region & Market Unit", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Coverage, Area, Region & Market Unit", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "IPCOVERAGE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "cascading_group_id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHT TYPE", "name": "Copyright Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHT_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.MEDIATYPE", "name": "Media Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Media Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MEDIA_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "MEDIA_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE FROM", "name": "Expiration of Usage - From", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - From", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_FROM", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE TO", "name": "Expiration of Usage - To", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - To", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_TO", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO._DURATION", "name": "IP Duration", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Duration", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "ECOM_DURATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHTTYPE DETAILS", "name": "Copyright Type Details", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type Details", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHTTYPE_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 6, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.MARKET.VID_STAT_RIGHT", "name": "Video & Static Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200047, "metadata_element_list": [{"id": "FERRERO.MARKET.VID_N_STAT", "name": "Video and Static Right", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video and Static Right", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VID_AND_STAT_RIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.VID_STAT_TYPE", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1221, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.TYPE_VID", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Video & Static Right", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TYPE_VID_STAT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_MARKET_TYPE_VID_STAT", "column_name": "TYPE_OF_VIDEO_STATIC_RIGHT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.VID_STAT_TYPE", "parent_table_name": "Type of Video & Static Right", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKET.PROD_COMPANY", "name": "Production House", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Production House", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.PRODUCT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200050, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.LICENSIN", "name": "Licensing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Licensing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSING", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "cascading_group_id": "FERRERO.MARKET.CG.LICENSE", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.SPOT_DETAILS", "name": "Spot Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200049, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.SPOT_VERSION", "name": "Spot Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Version", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_VERSION", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_VERSION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.SPOT_TYPE", "name": "Spot Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_TYPE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.DIRECTOR_NAME", "name": "Director Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Director Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "DIRECTOR_NAME", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VIDEO_POST_PROD_COMPANY", "name": "Video Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VID_POST_PROD_CONTACT", "name": "Video Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_COMPANY", "name": "Audio Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_CONTACT", "name": "Audio Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.BROADCASTER.CODE", "name": "Broadcaster Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Broadcaster Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BROADCASTER_CODE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.TECHNICAL_VALIDATION", "name": "Technical Validation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Technical Validation", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TECHNICAL_VALIDATION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS", "name": "Media Analysis", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1002, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "name": "Categories", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 105, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY NAME", "name": "Category Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "others_"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Category Name", "values": [{"value": {"type": "string", "value": "others_"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "NAME", "data_length": 100, "description": "Category Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY CONFIDENCE", "name": "Category Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 1.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Category Confidence", "values": [{"value": {"type": "decimal", "value": 1.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "CONFIDENCE", "data_length": 10, "description": "Category Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES COUNT", "name": "Faces Count", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Faces Count", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACECOUNT", "column_name": "COUNT", "data_length": 10, "description": "Faces Count", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "name": "Face Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 106, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME", "name": "Recognized Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME", "data_length": 2000, "description": "Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME CONFIDENCE", "name": "Recognized Name Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME_CONFIDENCE", "data_length": 10, "description": "Name Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE", "name": "Person Age", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE", "data_length": 10, "description": "Person Age", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE CONFIDENCE", "name": "Person Age Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Person Age Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_CONFIDENCE", "data_length": 10, "description": "Person Age Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER", "name": "Gender", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Gender", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.GENDER", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER", "data_length": 40, "description": "Gender", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER CONFIDENCE", "name": "Gender Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Gender Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER_CONFIDENCE", "data_length": 10, "description": "Gender Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.FACE COORDS", "name": "Face Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "FACE_COORDS", "data_length": 200, "description": "Face Coordinates like postion, height,width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE GROUP", "name": "Person Age Group", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age Group", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.AGE GROUP", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_GROUP", "data_length": 10, "description": "Person Age Group", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "name": "Safe Content", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 107, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONTENT TYPE", "name": "Safe Content Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Safe Content Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENTS", "data_length": 20, "description": "Safe Content Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONFIDENCE", "name": "Content Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Content Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENT_CONFIDENCE", "data_length": 10, "description": "Safe Content Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "name": "Colors", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 108, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.NAME", "name": "Color", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "White"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Color", "values": [{"value": {"type": "string", "value": "White"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "NAME", "data_length": 25, "description": "COLOR", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.PROPORTION", "name": "Color Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Color Confidence", "values": [{"is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "PROPORTION", "data_length": 10, "description": "Proportion", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.FOREGROUND", "name": "Foreground Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "White"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Foreground Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "FOREGROUND", "data_length": 25, "description": "Foreground Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.BACKGROUND", "name": "Background Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "White"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Background Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "BACKGROUND", "data_length": 25, "description": "Background Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.ISBW", "name": "Is Black and White", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "false"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Is Black and White", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "ISBW", "data_length": 10, "description": "Is Black and White", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "name": "Captions", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 109, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION TEXT", "name": "Caption Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "a close up of food"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Caption Text", "values": [{"value": {"type": "string", "value": "a close up of food"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "TEXT", "data_length": 2000, "description": "Caption Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION CONFIDENCE", "name": "Caption Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 50.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Caption Confidence", "values": [{"value": {"type": "decimal", "value": 50.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "CAPTION_CONFIDENCE", "data_length": 10, "description": "Caption Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "name": "Image Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 110, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.IMAGE TYPE", "name": "Analysis Image Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "clip_art"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Analysis Image Type", "values": [{"value": {"type": "string", "value": "clip_art"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_IMAGE_TYPE", "column_name": "TYPE", "data_length": 100, "description": "Image Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "parent_table_name": "Image Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.DATE", "name": "Date: Media Analysis", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-09T16:32:11+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date: Media Analysis", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MEDIA_ANALYSIS_DATE", "data_length": 25, "description": "Date Media Analysis was done on the asset.", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR LANGUAGE", "name": "Image Text Language", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "unk"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Image Text Language", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "LANGUAGE", "data_length": 10, "description": "OCR data language", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR TEXT", "name": "Text on Image", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Text on Image", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "TEXT", "data_length": 4000, "description": "OCR Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "name": "Embedded Brand Info", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 119, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.NAME", "name": "Embedded Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Embedded Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Embedded Brand Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.CONFIDENCE", "name": "Embedded Brand Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Embedded Brand Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Embedded Brand Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.COORDINATES", "name": "Embedded Brand Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Embedded Brand Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "COORDINATES", "data_length": 200, "description": "Embedded Brand Coordinates like position, height, width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "HYBRIS.PRODUCT.INFO", "name": "PIM Item Reference", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200027, "metadata_element_list": [{"id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "name": "Hybris Item Reference", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1206, "metadata_element_list": [{"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ID", "name": "Hybris Item ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ID", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT TAG NAME", "name": "Hybris Assignment Label", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Assignment Label", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_TAG_NAME", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ATTRIBUTE NAME", "name": "Hybris Attribute Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Attribute Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ATTRIBUTE_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT CATALOG NAME", "name": "Hybris Catalog Mnemonic", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Catalog Mnemonic", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_CATALOG_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT PK", "name": "Hybris Item PK", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item PK", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_PK", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.SYSTEM ID", "name": "Hybris System ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris System ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "SYSTEM_ID", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.ASSIGNED", "name": "Assigned", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Assigned", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "ASSIGNED", "column_name": "ASSIGNED", "data_length": 38, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PIM TYPE", "name": "PIM Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "PIM Type", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_PIM_TYPE", "column_name": "PIM_TYPE", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS VIDEO", "name": "Media Analysis Video", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1003, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "name": "Labels", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 113, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.ID", "name": "Label Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "ID", "data_length": 40, "description": "Label Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.NAME", "name": "Label Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "NAME", "data_length": 40, "description": "Label Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.APPEARANCES", "name": "Label Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "APPEARANCES", "data_length": 0, "description": "Label Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "name": "Sentiments", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 114, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.ID", "name": "Sentiment Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "ID", "data_length": 40, "description": "Sentiment Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.NAME", "name": "Sentiment Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "NAME", "data_length": 40, "description": "Sentiment Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.APPEARANCES", "name": "Sentiment Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "APPEARANCES", "data_length": 0, "description": "Sentiment Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.SEEN.DURATION.RATIO", "name": "Sentiment Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Sentiment Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "name": "Keywords", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 115, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.ID", "name": "Keyword Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "ID", "data_length": 40, "description": "Keyword Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.NAME", "name": "Keyword Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "NAME", "data_length": 40, "description": "Keyword Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.APPEARANCES", "name": "Keyword Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Keyword Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "name": "Faces", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 111, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.ID", "name": "Face Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "ID", "data_length": 40, "description": "Face Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.NAME", "name": "Face Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "NAME", "data_length": 40, "description": "Face Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.TITLE", "name": "Face Title", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Title", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "TITLE", "data_length": 249, "description": "Face Title", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.DESCRIPTION", "name": "Face Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Face Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.APPEARANCES", "name": "Face Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "APPEARANCES", "data_length": 0, "description": "Face Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SPEAKER.FACE.ID", "name": "Video Speaker Object Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Speaker Object Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "THUMBNAIL_OBJECT_ID", "data_length": 40, "description": "Video Speaker Object Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.SEEN.DURATION.RATIO", "name": "Face Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "SEEN_DURATION_RATIO", "data_length": 20, "description": "Face Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "name": "Brands", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 112, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.ID", "name": "Video Brand Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "ID", "data_length": 40, "description": "Brand Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.NAME", "name": "Video Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Brand Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.DESCRIPTION", "name": "Video Brand Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Brand Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.WIKIURL", "name": "Video Brand Wiki URL", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Wiki URL", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "WIKIURL", "data_length": 200, "description": "Brand Wiki URL", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.APPEARANCES", "name": "Video Brand Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Brand Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.SEEN.DURATION.RATIO", "name": "Video Brand Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Brand Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "name": "Speeches", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 116, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.ID", "name": "SpeechText Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "SpeechText Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "ID", "data_length": 40, "description": "SpeechText Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXT", "name": "Speech Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Text", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXT", "data_length": 1000, "description": "Speech Text", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXTTYPE", "name": "Speech Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXTTYPE", "data_length": 40, "description": "Speech Type", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.START TIME", "name": "Speech Start Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Start Time", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "START_TIME", "data_length": 40, "description": "Speech Start Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.END TIME", "name": "Speech End Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech End Time", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "END_TIME", "data_length": 40, "description": "Speech End Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "name": "Speakers", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 122, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.ID", "name": "Speaker Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "ID", "data_length": 40, "description": "Speaker Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.NAME", "name": "Speaker Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "NAME", "data_length": 100, "description": "Speaker Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.APPEARANCES", "name": "Speaker Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "APPEARANCES", "data_length": 0, "description": "Speaker Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.FIELDGROUP.LOCALASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200057, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1239, "metadata_element_list": [{"id": "FERRERO.FIELD.COUNTRY", "name": "LOCAL COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "LOCAL COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USER", "name": "USER", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "USER", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_USER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.ASSOCIATION", "name": "TYPE OF ASSOCIATION", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "TYPE OF ASSOCIATION", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_ASSOCIATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.VALUE", "name": "VALUE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "VALUE", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_VALUE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "CG.CATEGORY.FADEL ASSET INFORMATION", "name": "Rights Asset Information", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200064, "metadata_element_list": [{"id": "CG.FIELD.RIGHTS MANAGED", "name": "Fadel IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fadel IP Rights", "enabled": true, "options": "", "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_RIGHTS_MANAGED_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGED", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.NEEDS RIGHTS MANAGEMENT", "name": "Needs Rights Management", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "10", "field_value": {"type": "string", "value": "N"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Needs Rights Management", "enabled": true, "options": "", "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_NEEDS_RIGHTS_MANAGEMENT_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "NEEDS_RIGHTS_MANAGEMENT", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.RIGHTS MANAGEMENT DESCRIPTION", "name": "Rights Management Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Rights Management Description", "enabled": true, "options": "", "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGEMENT_DESCRIPTION", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.RIGHTS MANAGEMENT STATUS", "name": "Rights Management Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Rights Management Status", "enabled": true, "options": "", "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_RIGHTS_MANAGEMENT_STATUS_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGEMENT_STATUS", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.FORCE SYNC", "name": "Force Sync", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Force Sync", "enabled": true, "options": "", "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_FORCE_SYNC_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "FORCE_SYNC", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.LAST SYNC TIME", "name": "Date of last data sync", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date of last data sync", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "LAST_SYNC_TIME", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "CG.CATEGORY.FADEL RIGHTS INFORMATION", "name": "Rights Information", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200065, "metadata_element_list": [{"id": "CG.TABLE.RIGHTS", "name": "Rights", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1256, "metadata_element_list": [{"id": "CG.FIELD.RIGHT TERRITORIES", "name": "Territory", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Territory", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "TERRITORY", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT USES", "name": "Use", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Use", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "USAGE", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT IN DATE", "name": "In Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "In Date", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "IN_DATE", "data_length": 10, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT OUT DATE", "name": "Out Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Out Date", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "OUT_DATE", "data_length": 10, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "saved_values_behavior_mode": 0}]}]}, {"id": "CG.CATEGORY.FADEL AGREEMENTS AND PARTIES", "name": "Agreements and Parties", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200067, "metadata_element_list": [{"id": "CG.TABLE.PARTIES.AGREEMENTS VW", "name": "Customized Table Parties and Agreements", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1258, "metadata_element_list": [{"id": "CG.FIELD.AGREEMENT NUMBER VW", "name": "Agreement Number ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Number ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_NUMBER", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT DESCRIPTION VW", "name": "Agreement Description ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Description ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_DESCRIPTION", "data_length": 2000, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT START DATE VW", "name": "Agreement Start Date ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Start Date ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_START_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT END DATE VW", "name": "Agreement End Date ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement End Date ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_END_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY NAME VW", "name": "Party Name ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Name ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_NAME", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY ROLE VW", "name": "Party Role ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Role ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_ROLE", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY EMAIL ADDRESS VW", "name": "Party Email Address ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Email Address ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_EMAIL_ADDRESS", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY PHONE NUMBER VW", "name": "Party Phone Number ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Phone Number ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_PHONE_NUMBER", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PRIMARY PARTY CONTACT VW", "name": "Primary Party Contact ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Primary Party Contact ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PRIMARY_PARTY_CONTACT", "data_length": 200, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 8, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}], "has_multilingual_fields": false}, "mime_type": "image/jpeg", "path_list": [{"parents": [{"id": "90962e8228075df2ada17d7fb668aaca95c87092", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "90962e8228075df2ada17d7fb668aaca95c87092", "sequence_number": 0}, {"id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "name": "MASTER FOR FER ROCH", "container_state": "NORMAL", "original_uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "sequence_number": 0}, {"id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "name": "01. DE - Rocher ", "container_state": "NORMAL", "original_uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "sequence_number": 0}, {"id": "091216b59cad7f1ea815164c26db27e350c54023", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "sequence_number": 0}, {"id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "name": "01. Rocher", "container_state": "NORMAL", "original_uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "sequence_number": 0}, {"id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "name": "01. Ferrero Rocher", "container_state": "NORMAL", "original_uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "sequence_number": 0}, {"id": "93b0968611de11160ed068afeb9930b9965bd5ff", "name": "03. Premium Chocolate", "container_state": "NORMAL", "original_uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "sequence_number": 0}], "complete": true, "sequence_number": 3, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "1a0d163b5afa316ab4221ef1be7f2c836459c723", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "1a0d163b5afa316ab4221ef1be7f2c836459c723", "sequence_number": 0}, {"id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "name": "LOCAL ADP FER ROCH 2", "container_state": "NORMAL", "original_uoi_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "sequence_number": 0}, {"id": "9f8e8b04cba52ef52299cf50029390c69a2b7744", "name": "25-26", "container_state": "NORMAL", "original_uoi_id": "9f8e8b04cba52ef52299cf50029390c69a2b7744", "sequence_number": 0}, {"id": "4b9c4af560c14507ba1bfa099e78a256097c80c6", "name": "02. Campaign", "container_state": "NORMAL", "original_uoi_id": "4b9c4af560c14507ba1bfa099e78a256097c80c6", "sequence_number": 0}, {"id": "65c70f3f1f1ed4438d2e66cdfe44ee72cecf1b01", "name": "01. Standard", "container_state": "NORMAL", "original_uoi_id": "65c70f3f1f1ed4438d2e66cdfe44ee72cecf1b01", "sequence_number": 0}, {"id": "121deaf433dfae27519f93797090b905252d4bc0", "name": "01. Denmark", "container_state": "NORMAL", "original_uoi_id": "121deaf433dfae27519f93797090b905252d4bc0", "sequence_number": 0}, {"id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "name": "SCANDINAVIA", "container_state": "NORMAL", "original_uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "sequence_number": 0}, {"id": "f2649309eb916c5c25bb309e3db061042c3eecca", "name": "01. MC - Rocher", "container_state": "NORMAL", "original_uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "sequence_number": 0}, {"id": "091216b59cad7f1ea815164c26db27e350c54023", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "sequence_number": 0}, {"id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "name": "01. Rocher", "container_state": "NORMAL", "original_uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "sequence_number": 0}, {"id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "name": "01. Ferrero Rocher", "container_state": "NORMAL", "original_uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "sequence_number": 0}, {"id": "93b0968611de11160ed068afeb9930b9965bd5ff", "name": "03. Premium Chocolate", "container_state": "NORMAL", "original_uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "90962e8228075df2ada17d7fb668aaca95c87092", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "90962e8228075df2ada17d7fb668aaca95c87092", "sequence_number": 0}, {"id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "name": "MASTER FOR FER ROCH", "container_state": "NORMAL", "original_uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "sequence_number": 0}, {"id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "name": "01. DE - Rocher ", "container_state": "NORMAL", "original_uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "sequence_number": 0}, {"id": "bfbc248a12a4bf0382406620f0d9ec41ff42e35e", "name": "01. Ferrero Rocher", "container_state": "NORMAL", "original_uoi_id": "bfbc248a12a4bf0382406620f0d9ec41ff42e35e", "sequence_number": 0}, {"id": "3d7debea6815ae46c9598191b1c645007666292a", "name": "03 . Premium Chocolate", "container_state": "NORMAL", "original_uoi_id": "3d7debea6815ae46c9598191b1c645007666292a", "sequence_number": 0}, {"id": "c0bb10be2b8f96ee4d27a2dfb7e0d03de68cf114", "name": "DE", "container_state": "NORMAL", "original_uoi_id": "c0bb10be2b8f96ee4d27a2dfb7e0d03de68cf114", "sequence_number": 0}, {"id": "b124e1ed196028bdd0e2c093e28078ca8d9ad462", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "b124e1ed196028bdd0e2c093e28078ca8d9ad462", "sequence_number": 0}, {"id": "68ce80e8c8a30badb82dabfd823886a6fa6fe309", "name": "Y - Geography", "container_state": "NORMAL", "original_uoi_id": "68ce80e8c8a30badb82dabfd823886a6fa6fe309", "sequence_number": 0}], "complete": true, "sequence_number": 3, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "1a0d163b5afa316ab4221ef1be7f2c836459c723", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "1a0d163b5afa316ab4221ef1be7f2c836459c723", "sequence_number": 0}, {"id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "name": "Read Only", "container_state": "NORMAL", "original_uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "sequence_number": 0}, {"id": "23b155c32d5c6142914b41458234c100812bbec8", "name": "Oliver", "container_state": "NORMAL", "original_uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "sequence_number": 0}, {"id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "name": "Z - Exchange", "container_state": "NORMAL", "original_uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}], "creator_id": "1003", "asset_state": "NORMAL", "checked_out": false, "folder_path": "", "content_size": 13800, "content_type": "BITMAP", "content_state": "NORMAL", "date_imported": "2026-01-09T16:31:22.767+01:00", "import_job_id": 224850, "subscribed_to": false, "collection_ids": [], "latest_version": true, "legacy_model_id": 116, "content_editable": true, "import_user_name": "bizAdmin", "date_last_updated": "2026-01-15T14:16:20.48+01:00", "metadata_model_id": "ECOMMERCE", "original_asset_id": "a195f04ddd6a78d22fdf4953b46f9210d50b70a8", "rendition_content": {"preview_content": {"id": "a917867bc8a02ca95dd797eac58124f14657b574", "url": "/otmmapi/v6/renditions/a917867bc8a02ca95dd797eac58124f14657b574", "name": "kinder joy 2-S.png", "width": 265, "height": 190, "mime_type": "image/png", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "PREVIEW", "content_path": "data\\\\repository\\\\screen\\\\vol0\\\\186\\\\kinder joy 2-S_a917867bc8a02ca95dd797eac58124f14657b574.png", "content_size": 77502, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "thumbnail_content": {"id": "9c56a35c68c1faa76793280deec5a6c7ced92544", "url": "/otmmapi/v6/renditions/9c56a35c68c1faa76793280deec5a6c7ced92544", "name": "kinder joy 2-T.png", "width": 265, "height": 190, "mime_type": "image/png", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "THUMBNAIL", "content_path": "data\\\\repository\\\\thumb\\\\vol0\\\\201\\\\kinder joy 2-T_9c56a35c68c1faa76793280deec5a6c7ced92544.png", "content_size": 77502, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_content_info": {"master_content": {"id": "0457dfa8bbd32e69d36097989e98a0e0d6b8ea8c", "url": "/otmmapi/v6/renditions/0457dfa8bbd32e69d36097989e98a0e0d6b8ea8c", "name": "kinder joy 2.jpg", "width": 265, "height": 190, "mime_type": "image/jpeg", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\227\\\\kinder joy 2_0457dfa8bbd32e69d36097989e98a0e0d6b8ea8c.jpg", "content_size": 13800, "unit_of_size": "BYTES", "content_checksum": "dd2c2f078389c2ee63ea2bc1a9e868b6", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_state_user_id": "1001", "master_content_info": {"id": "0457dfa8bbd32e69d36097989e98a0e0d6b8ea8c", "url": "/otmmapi/v6/renditions/0457dfa8bbd32e69d36097989e98a0e0d6b8ea8c", "name": "kinder joy 2.jpg", "width": 265, "height": 190, "mime_type": "image/jpeg", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\227\\\\kinder joy 2_0457dfa8bbd32e69d36097989e98a0e0d6b8ea8c.jpg", "content_size": 13800, "unit_of_size": "BYTES", "content_checksum": "dd2c2f078389c2ee63ea2bc1a9e868b6", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "delivery_service_url": "https://ppr.dam.ferrero.com/adaptivemedia/rendition?id=a195f04ddd6a78d22fdf4953b46f9210d50b70a8", "product_associations": false, "security_policy_list": [{"id": 9525, "name": "Premium Chocolate Local DE Editable Ferrero Rocher", "status": "NORMAL", "created_by": "1003", "create_date": "2024-11-26T10:08:39.973+01:00", "description": "Premium Chocolate Local DE Editable Ferrero Rocher", "ownership_type": "PUBLIC"}, {"id": 11499, "name": "Premium Chocolate Local SCANDINAVIA Editable Ferrero Rocher", "status": "NORMAL", "created_by": "1003", "create_date": "2025-12-24T11:50:58.833+01:00", "description": "Premium Chocolate Local SCANDINAVIA Editable Ferrero Rocher", "ownership_type": "PUBLIC"}], "thumbnail_content_id": "9c56a35c68c1faa76793280deec5a6c7ced92544", "content_state_user_id": "1003", "content_state_user_name": "OTMM BusinessAdmin", "asset_lock_state_user_id": "1001", "metadata_state_user_name": "otmm admin", "access_control_descriptor": {"permissions_map": {"entry": [{"key": "text.securityPolicy.permission.Custom04Permission", "value": true}, {"key": "text.securityPolicy.permission.ContentEditPermission", "value": true}, {"key": "text.securityPolicy.permission.AssetViewPermission", "value": true}, {"key": "text.securityPolicy.permission.ProjectViewPermission", "value": true}, {"key": "text.securityPolicy.permission.MembershipEditPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom03Permission", "value": true}, {"key": "text.securityPolicy.permission.MetaDataEditPermission", "value": true}, {"key": "text.securityPolicy.permission.EditParentsPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom02Permission", "value": true}, {"key": "text.securityPolicy.permission.ExportPermission", "value": true}, {"key": "text.securityPolicy.permission.SummaryViewPermission", "value": true}, {"key": "text.securityPolicy.permission.PreviewViewPermission", "value": true}, {"key": "text.securityPolicy.permission.SubscribePermission", "value": true}, {"key": "text.securityPolicy.permission.DeleteAssetPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom01Permission", "value": true}]}}, "content_lock_state_user_id": "1003", "asset_state_last_update_date": "2026-01-15T14:16:20.48+01:00", "content_lock_state_user_name": "bizAdmin", "metadata_lock_state_user_name": "tsuper", "content_state_last_update_date": "2026-01-09T16:31:23.157+01:00", "inherited_metadata_collections": [{"container_id": "90962e8228075df2ada17d7fb668aaca95c87092", "container_name": "05. Final Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "90962e8228075df2ada17d7fb668aaca95c87092", "originator_id": "90962e8228075df2ada17d7fb668aaca95c87092", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "05. Final Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "container_name": "MASTER FOR FER ROCH", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "MASTER FOR FER ROCH"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000779"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "MASTER_FOR_FER_ROCH_CQ_LG_DE_PRE_0000779"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local comm on global brands"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Master Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Master Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2026/2027"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "B1"}, "display_value": "Master campaign ready for re-mastering", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ADDITIONALAPPROVER", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.LICENSING", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "d0ef653291e269a7d1ddf0ebfedd1c6ad70b1c59"}, "metadata_element": {"id": "FERRERO.FIELD.LICENSING", "name": "Campaign License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "LICENSING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}}]}, {"container_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "container_name": "01. DE - Rocher ", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "bb01cf85444107f22341d2b88421f0cbaade0bf9"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E006"}, "display_value": "GERMANY", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Local DE Editable Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Premium Chocolate Local DE Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "8f497ce53d23899c7c09aa5a7ca69c9f55c3a62d"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E64"}, "display_value": "GERMANY", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "ca70a6d55e4277ecbef2a01a593c614501cbcf74"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "3e9d669ab1047383d0416ba40af75744148c94c8"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0e241fc386dcd91baa31a409e297169fe4a352c2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "2e3e0f2be0e487b540d9b63cb8c0e9ed9c6b1bb6"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "359c98154f230a60acc6b4eb048e129411d7a778"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "b3698893fc223e8371f4e4c0d560d0536c724a09"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "e92f9f10c0c29dda8261218c2c72a0baa66472f2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "15dff42c3b196ba3ae5b3c2ea33f00e347e6f654"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Extended Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0ae044cd9dddf86cd9406c9edc3996b18c430be0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "name": "AMMC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AMMC", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LOCAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "7806fed6127b50c21f6b03e1f7b63f3dedc1e8d1"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "RMMC", "values": [{"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "4c8a2d6e178638bfacfeaf3f7f6f1000304693a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "name": "Product Asset Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Product Asset Approval Ferrero Rocher Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Asset Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCT_ASSET_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local comm on global brands"}, "display_value": "Local comm on global brands", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "5a1ae26558efdc03336c0df838dd9e7c2a51c687"}, "metadata_element": {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "name": "Market Unit", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market Unit", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETUNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "MARKET_UNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "091216b59cad7f1ea815164c26db27e350c54023", "container_name": "EU", "container_type_id": "GEOGRAPHYLOCAL", "container_type_name": "L4 - GEOGRAPHY LOCAL", "inherited_metadata_values": [{"id": "FERRERO.MARKET.FOLDER.GLOBAL", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "4c4d4bf36bf8b1ace55f990e78d6332a9cb20990"}, "metadata_element": {"id": "FERRERO.MARKET.FOLDER.GLOBAL", "name": "Global/Local (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "LOCAL"}, "display_value": "Local", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local (Marketing)", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "GLOBALLOCAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_AREA", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "3dc200c993ab8263952dc6da1498026f615f45dd"}, "metadata_element": {"id": "MARKETING_AREA", "name": "AREA", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E010"}, "display_value": "EUROPE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "AREA", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "AREA", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "AREA", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "dc7749c3e113ec9e0b9e9a3840ea55673ca5e49f"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "f2d658a3829c2ea158ae70a4b4e7928bcf88f8e2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "972d0258a82de85672bd84d8af68cdb67ad3d3ca"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "1212505ad3fe4c9d7458568f3d95aeb4c4e5c37e"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "9d1dfdef55ff7a3eb03552988ddf729c7a0f5107"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "54f006eeb366121a29ee98da33d437615dcd34e0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "1fd8802010e30d44cebb2f3eb090b12ac550f97d"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "8b6e1d8f7dc3c4671cfc11a2914d838ca3ee3f3b"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "be0dc9a87262ee7fd165237b531ba3b7aa93a260"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "2f99f0f0f9e43fb34df9222c8b73a86fb78e473e"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "container_name": "01. Rocher", "container_type_id": "GLOBALBRAND", "container_type_name": "L3 - BRAND", "inherited_metadata_values": [{"id": "FERRERO.TABULAR.NEW.BRAND", "tabular": true, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "9bb1c183135f5240f09132aef59c4ea48c762381"}, "metadata_element": {"id": "FERRERO.TABULAR.NEW.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF04"}, "display_value": "ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND (Marketing)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF04"}, "display_value": "ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "BRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TABULAR_BRAND", "column_name": "BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.NEW.BRAND", "parent_table_name": "BRAND (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "tabular": true, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "a37b13c02cba799378211e17b73234a0d836f9b6"}, "metadata_element": {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "CQ"}, "display_value": "FERRERO ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND(HARMONIZED)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "CQ"}, "display_value": "FERRERO ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.HARMONIZEDBRAND", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_HARMONIZEDBRAND", "column_name": "HARMONIZEDBRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.HARMONIZEDBRAND", "parent_table_name": "BRAND(HARMONIZED)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "AGENCY.COLLABORATION", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "183d6e0957a9940f9b18ef44f46d957802b63397"}, "metadata_element": {"id": "AGENCY.COLLABORATION", "name": "Agency collaboration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency collaboration", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "AGENCY_COLLABORATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "AGENCY.SHARING", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "d0e2b725ddfdc452cc3ba750bbe8ec059c6b01ba"}, "metadata_element": {"id": "AGENCY.SHARING", "name": "Agency sharing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency sharing", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "AGENCY_SHARING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "CONTENT.SCALING.AGENCYNAME", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "f9dfa695cc5ef8cd3fafada4e44cfdaa1522d58a"}, "metadata_element": {"id": "CONTENT.SCALING.AGENCYNAME", "name": "Content Scaling agency name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Scaling agency name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENTSCALING_AGENCYNAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "container_name": "01. Ferrero Rocher", "container_type_id": "GLOBALSUBCATEGORY", "container_type_name": "L2 - SUBCATEGORY", "inherited_metadata_values": [{"id": "MARKETING_SUBCATEGORY", "tabular": false, "value_id": {"uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "originator_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "inherited_field_id": "3000ad591e09b5c75f85fc2ccbb9ebeb31b3ab78"}, "metadata_element": {"id": "MARKETING_SUBCATEGORY", "name": "SUBCATEGORY", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Mart-Ferrero-Rocher"}, "display_value": "Ferrero Rocher", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "SUBCATEGORY", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "SUBCATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "SUBCATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "tabular": true, "value_id": {"uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "originator_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "inherited_field_id": "2c751ce760d88c0e271925ea5149348106944bfa"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Subcategory Owner", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_SUBCATEGORY_OWNER_TM", "column_name": "SUBCATEGORY_OWNER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "parent_table_name": "Subcategory Owner", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "container_name": "03. Premium Chocolate", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "originator_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E06"}, "display_value": "PREMIUM CHOCOLATE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "originator_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final Approver BPS ", "values": [{"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "1a0d163b5afa316ab4221ef1be7f2c836459c723", "container_name": "00. Master Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "1a0d163b5afa316ab4221ef1be7f2c836459c723", "originator_id": "1a0d163b5afa316ab4221ef1be7f2c836459c723", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00. Master Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "container_name": "LOCAL ADP FER ROCH 2", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "originator_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "LOCAL ADP FER ROCH 2"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "originator_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000780"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "originator_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "LOCAL_ADP_FER_ROC_CQ_LAL_MLT_PRE_0000780"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "originator_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "originator_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "originator_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "originator_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local adaptation of local comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "originator_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Master Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000779"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Master Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "originator_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "originator_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "DK"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "DK"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "SE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "FI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "NO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "IS"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "GL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "originator_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2026/2027"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "originator_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2797"}, "display_value": "Owner, Asset (AssetownerLoG, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2797"}, "display_value": "Owner, Asset (AssetownerLoG, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "originator_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2797"}, "display_value": "Owner, Asset (AssetownerLoG, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2797"}, "display_value": "Owner, Asset (AssetownerLoG, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "originator_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "A3"}, "display_value": "Localized Asset received from Agency", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "originator_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ADDITIONALAPPROVER", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.LICENSING", "tabular": false, "value_id": {"uoi_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "originator_id": "454ce4beb7b1db2f195e93797b09e23a844fe2f0", "inherited_field_id": "d0ef653291e269a7d1ddf0ebfedd1c6ad70b1c59"}, "metadata_element": {"id": "FERRERO.FIELD.LICENSING", "name": "Campaign License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "LICENSING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}}]}, {"container_id": "9f8e8b04cba52ef52299cf50029390c69a2b7744", "container_name": "25-26", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "9f8e8b04cba52ef52299cf50029390c69a2b7744", "originator_id": "9f8e8b04cba52ef52299cf50029390c69a2b7744", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "25-26"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "4b9c4af560c14507ba1bfa099e78a256097c80c6", "container_name": "02. Campaign", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "4b9c4af560c14507ba1bfa099e78a256097c80c6", "originator_id": "4b9c4af560c14507ba1bfa099e78a256097c80c6", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "02. Campaign"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "65c70f3f1f1ed4438d2e66cdfe44ee72cecf1b01", "container_name": "01. Standard", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "65c70f3f1f1ed4438d2e66cdfe44ee72cecf1b01", "originator_id": "65c70f3f1f1ed4438d2e66cdfe44ee72cecf1b01", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "01. Standard"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "121deaf433dfae27519f93797090b905252d4bc0", "container_name": "01. Denmark", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "121deaf433dfae27519f93797090b905252d4bc0", "originator_id": "121deaf433dfae27519f93797090b905252d4bc0", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "01. Denmark"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "container_name": "SCANDINAVIA", "container_type_id": "GLOBALMARKETUNIT", "container_type_name": "L6 - MARKET UNIT", "inherited_metadata_values": [{"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "24a6615bcce9adc5a098c76c29b8e8baba61a9a3"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E22"}, "display_value": "SCANDINAVIA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "13063087b81ea172db42e69ed8e8fa013cd5bfe0"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Local SCANDINAVIA Editable Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "bf49ba2a40d0d0dccee4d5de7381659b106dd89a"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Premium Chocolate Local SCANDINAVIA Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "8e4d311466783d8215a38b08bee3cb2b3bfcf40f"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "9e88b5726590ab30642999a28a301e3fbcebc762"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "name": "Published Security Policy - Restricted Visibility", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Security Policy - Restricted Visibility", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_VISIBILITY_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "3c0070e420882e3e18f6097811cb60a67239003b"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local SCANDINAVIA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "7f3c1933b61e900457ea6e2aab750303882873d4"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "b0c960759e48c0fcdcb650417179a614da95e866"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Local SCANDINAVIA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "6f603fcc63415e266dc35cf2314d31357a2966bf"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "3c12728b06ecfafeeb74482ea7b7296b180765f9"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "dc9b8ffa0591a1b2956c07fa5dc10ff477c84f4e"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "495fa4f08769a021cfa907dfb7a903fade9bd19a"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "e3b647e172a89e1e7cbdd2964faff1bca8dcf520"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "6870cca056b54cd400a9fbd4fe75513e69cedcdd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "RMMC", "values": [{"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "container_name": "01. MC - Rocher", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "bb01cf85444107f22341d2b88421f0cbaade0bf9"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E023"}, "display_value": "MULTI COUNTRY EUROPE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "8f497ce53d23899c7c09aa5a7ca69c9f55c3a62d"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E22"}, "display_value": "SCANDINAVIA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "ca70a6d55e4277ecbef2a01a593c614501cbcf74"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "3e9d669ab1047383d0416ba40af75744148c94c8"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "0e241fc386dcd91baa31a409e297169fe4a352c2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "2e3e0f2be0e487b540d9b63cb8c0e9ed9c6b1bb6"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "359c98154f230a60acc6b4eb048e129411d7a778"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "b3698893fc223e8371f4e4c0d560d0536c724a09"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "e92f9f10c0c29dda8261218c2c72a0baa66472f2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "15dff42c3b196ba3ae5b3c2ea33f00e347e6f654"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "0ae044cd9dddf86cd9406c9edc3996b18c430be0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "name": "AMMC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AMMC", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LOCAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "7806fed6127b50c21f6b03e1f7b63f3dedc1e8d1"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "RMMC", "values": [{"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "4c8a2d6e178638bfacfeaf3f7f6f1000304693a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "name": "Product Asset Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Asset Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCT_ASSET_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of local comm"}, "display_value": "Local adaptation of local comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of local comm"}, "display_value": "Local adaptation of local comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "5a1ae26558efdc03336c0df838dd9e7c2a51c687"}, "metadata_element": {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "name": "Market Unit", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market Unit", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETUNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "MARKET_UNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "container_name": "Read Only", "container_type_id": "L3 - Agency Structure", "container_type_name": "L3 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "55530f721f18c847e35d7c828edf53461b5014b0"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "330bb6f68316aab5c45f9fe34e047cce573c67cc"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "name": "Agency Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "AGENCY_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "e30e90d694f9935d4c15c4c78891beed8853a272"}, "metadata_element": {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "name": "Published Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "PUBLISHED_ASSET_SP_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "23b155c32d5c6142914b41458234c100812bbec8", "container_name": "Oliver", "container_type_id": "L2 - Agency Structure", "container_type_name": "L2 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.AGENCY", "tabular": false, "value_id": {"uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "originator_id": "23b155c32d5c6142914b41458234c100812bbec8", "inherited_field_id": "48fcbc397986aca5bb8722a95197dd0a46f19b4e"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_AGENCY", "column_name": "AGENCY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "container_name": "Z - Exchange", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "YY"}, "display_value": "AGENCIES", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Final Approver BPS ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}], "asset_lock_state_last_update_date": "2026-01-15T14:16:20.483+01:00", "content_lock_state_last_update_date": "2026-01-09T16:31:23.207+01:00"} \N \N active f \N \N 2026-01-16 20:54:05.60229 2026-01-16 20:54:05.60229 2026-01-16 20:54:05.60229 16 MuXBHt 5012626b17281761b51535780cc82a1a84a4b649 kinder joy .jpg \N image/jpeg \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 90962e8228075df2ada17d7fb668aaca95c87092 Box File ID: 2105225634392\nBox URL: https://app.box.com/file/2105225634392\nDAM Asset ID: 5012626b17281761b51535780cc82a1a84a4b649 {"name": "kinder joy.jpg", "links": {"links": [], "source_id": "5012626b17281761b51535780cc82a1a84a4b649"}, "locked": false, "deleted": false, "expired": false, "version": 1, "asset_id": "5012626b17281761b51535780cc82a1a84a4b649", "metadata": {"id": "ECOMMERCE", "name": "Marketing Asset", "type": "com.artesia.metadata.MetadataModel", "legacy_id": 116, "metadata_element_list": [{"id": "FERRERO.CATEGORY.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200054, "metadata_element_list": [{"id": "FERRERO.FIELD.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Status", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.CONTENT_STATUS", "edit_type": "COMBO_NOTNULL", "facetable": false, "searchable": true, "table_name": "FERRERO_CONTENT_STATUS_MD", "column_name": "CONTENT_STATUS", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9215, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRER.CATEGORY.ASSET_INFO", "name": "Asset Info", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200022, "metadata_element_list": [{"id": "FERRERO.FIELD.MKTG.ASSET TYPE", "name": "Asset Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "brandbook"}, "display_value": "Brand Book", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.ASSETTYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.FISCAL YEAR", "name": "Release Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2028/2029"}, "display_value": "2028/2029", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Release Fiscal Year", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_DOMAIN_FISCAL_YEAR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "FISCAL__YEAR", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "name": "Main Languages", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1210, "metadata_element_list": [{"id": "MAIN_LANGUAGES", "name": "MAIN LANGUAGES", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "MAIN LANGUAGES", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MAIN LAGUAGES_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MAIN_LANGUAGE_TABLE", "column_name": "MAIN_LANGUAGE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "parent_table_name": "Main Languages", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.ASSET DESCRIPTION", "name": "Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Description", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "DESCR", "data_length": 249, "description": "Descriptive information", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.FLAVOUR", "name": "Flavour", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Flavour", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.FLAVOUR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FLAVOUR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.SIZE", "name": "Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Size", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.SIZE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SIZE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1241, "metadata_element_list": [{"id": "FERRERO.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Compliance", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ASSETCOMPLIANCE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_COMPLIANCE", "column_name": "ASSET_COMPLIANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "parent_table_name": "Asset Compliance", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.TAG DETAILS", "name": "Tag Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 118, "metadata_element_list": [{"id": "ARTESIA.FIELD.TAG", "name": "Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "cartoon", "field_value": {"type": "string", "value": "cartoon"}, "display_value": "cartoon", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Tag", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "cartoon", "field_value": {"type": "string", "value": "cartoon"}, "display_value": "cartoon", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "ball", "field_value": {"type": "string", "value": "ball"}, "display_value": "ball", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "baseball", "field_value": {"type": "string", "value": "baseball"}, "display_value": "baseball", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "sports uniform", "field_value": {"type": "string", "value": "sports uniform"}, "display_value": "sports uniform", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.TAGS", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "OTMM_TAGS", "column_name": "TAG", "data_length": 80, "description": "Tag", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG CONFIDENCE", "name": "Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 80.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Confidence", "values": [{"value": {"type": "decimal", "value": 80.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 80.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 76.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 56.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Confidence", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG TYPE", "name": "Tag Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Tag Type", "values": [{"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "TAG_TYPE", "data_length": 10, "description": "Tag Type", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED BY", "name": "Associated By", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Associated By", "values": [{"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_BY", "data_length": 10, "description": "Associated By", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED DATE", "name": "Associated Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-09T16:32:10.27+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Associated Date", "values": [{"value": {"type": "dateTime", "value": "2026-01-09T16:32:10.27+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2026-01-09T16:32:10.27+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2026-01-09T16:32:10.273+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2026-01-09T16:32:10.273+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_DATE", "data_length": 10, "description": "Associated Date", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.STATE", "name": "Global/Local", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "GLOBAL"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO_NOTNULL", "facetable": true, "searchable": true, "table_name": "FERRERO_IC_ASSET_DETAILS", "column_name": "ASSET_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.ASPECT RATIO", "name": "Aspect Ratio (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio (Marketing)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASPECT_RATIO", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASPECT_RATIO", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "name": "Tag (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1222, "metadata_element_list": [{"id": "MARKETING_TAG", "name": "Marketing Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Marketing Tag", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.DOMAIN.TAG", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TAG_MARKET", "column_name": "TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "parent_table_name": "Tag (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.TAGS", "name": "Auto-Generated Tags", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Auto-Generated Tags", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "AUTO_GENERATED_TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CERTIFIER", "name": "Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approver", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.MARKETING.FIELD.APPROVAL DATE", "name": "Approval__Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approval__Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.LEGAL APPROVAL DATE", "name": "Legal Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CERTIFIER", "name": "IA&CC Certifier", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Certifier", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CC APPROVAL DATE", "name": "IA&CC Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "name": "Extended Approval", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1230, "metadata_element_list": [{"id": "FERRERO.FIELD.EXTENDED.APPROVAL", "name": "Extended Approval required by:", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended Approval required by:", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COMMENTS", "name": "Comment", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comment", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "COMMENTS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.DATE", "name": "Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USERS", "name": "User ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "User ID", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "USERS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXTENDED.JOBID", "name": "Extended JobID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended JobID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.MIGRATION.INDEX", "name": "Migration Index", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Migration Index", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MIGRATION.INDEX", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MIGRATION_INDEX", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "FERRERO_MARKET_MARKETING_CREATOR", "name": "Marketing Creator", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Marketing Creator", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.CREATOR", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MARKETING_CREATOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "ARTESIA.FIELD.IS LATEST VERSION", "name": "Is Latest Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Y"}, "display_value": "Yes", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Is Latest Version", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.YES_NO", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "IS_LATEST_VERSION", "data_length": 1, "description": "Is this the latest version? (Y/N)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET VERSION", "name": "Asset Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 1}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Version", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "INTEGER", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "VERSION", "data_length": 12, "description": "Version number of asset", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET_ID", "name": "Asset ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "5012626b17281761b51535780cc82a1a84a4b649"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset ID", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "LOGICAL_UOI_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.ECOMMERCE STATUS", "name": "Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "PUBLISHED"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Status", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "ASSET_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CREATOR", "name": "Uploaded by", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Uploaded by", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_USER_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.FIELD.CREATION DATE", "name": "Upload Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-09T16:31:22.763+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Upload Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_DT", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.ASSET NAME", "name": "Asset Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "kinder joy.jpg"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Name", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "description": "Original name of master object", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.CONTENT TYPE", "name": "Content Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "BITMAP"}, "display_value": "Image", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Type", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.CONTENT_TYPES", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "CONTENT_TYPE", "data_length": 8, "description": "Content Type", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.MIME TYPE", "name": "File Extension", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "image/jpeg"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Extension", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_MIME_TYPE", "data_length": 80, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.FILE.SIZE", "name": "File Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "long", "value": 6776}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Size", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "LONG", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_SIZE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP RESOLUTION", "name": "Bitmap Resolution", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 72}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Resolution", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_RESOLUTION", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP WIDTH", "name": "Bitmap Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 225}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Width", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_WIDTH", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP HEIGHT", "name": "Bitmap Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 225}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Height", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_HEIGHT", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "name": "Approval Metadata", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1249, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.DEPARTMENT", "name": "Department", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Department", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "DEPARTMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.CERTIFIER", "name": "Certifier", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Certifier", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL DATE", "name": "Approval Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Approval Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "APPROVAL_DATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.COMMENT", "name": "Comments", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comments", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "COMMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.TYPE OF APPROVAL", "name": "Type of Approval", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Approval", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "TYPE_OF_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL STATUS", "name": "Approval Status", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Approval Status", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "APPROVAL_STATUS", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.SUB JOBID", "name": "Sub Job Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sub Job Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.VIDEO.BIT_RATE", "name": "Bitrate", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitrate", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "BIT_RATE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.EMBEDDED.FIELD.DURATION", "name": "Duration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Duration", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "DURATION_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.ASPECT RATIO", "name": "Aspect Ratio", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "ASPECT_RATIO", "data_length": 30, "displayable": false, "instructions": "ASPECT_RATIO", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME HEIGHT", "name": "Frame Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Height", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_HEIGHT", "data_length": 12, "displayable": true, "instructions": "FRAME_HEIGHT", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME WIDTH", "name": "Frame Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Width", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_WIDTH", "data_length": 12, "displayable": true, "instructions": "FRAME_WIDTH", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.ASPECT.RATIO.POC", "name": "Aspect Ratio(POC)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "1:1"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio(POC)", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASPECT_RATIO_TABLE", "column_name": "ASPECT_RATIO", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "PRODUCT.DETAILS", "name": "Product Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200029, "metadata_element_list": [{"id": "FERRERO.TABLE.EANCODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1208, "metadata_element_list": [{"id": "EAN_CODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "EAN CODE/ 77 CODE", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "EAN.CODE", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "EAN_CODE", "column_name": "EAN_CODE_DESCRIPTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "COUNTRY", "name": "COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "EAN_CODE", "column_name": "COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKETING.ADVANCE.PRODUCT.LINK", "name": "Asset-to-product relation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset-to-product relation", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_MARKETING_ADVANCE_PRODUCT_LINK", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ADVANCE_PRODUCT_LINK", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 10182, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.SUB BRAND", "name": "Sub-Brands", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Sub-Brands", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.SUBBRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "SUB_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT WEIGHT", "name": "Product Weight", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Weight", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_WEIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.CONSUMER UNIT PACKAGING", "name": "Consumer Unit Packaging", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Consumer Unit Packaging", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PACK", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "CONSUMER_UNIT_PACKAGING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.4 DIGIT CODE", "name": "4 Digit Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "4 Digit Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "DIGITCODE", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERREO.ECOM.RETAILER_SPECIFIC_FIELD", "name": "Retailer Specific", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Retailer Specific", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "RETAILER_SPECIFIC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "cascading_group_id": "FERRERO.RETAILER.SPECIFIC", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY START PERIOD", "name": "Asset validity start period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-11T00:00:00+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity start period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_STARTING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY END PERIOD", "name": "Asset validity end period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-03-31T00:00:00+02:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity end period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_ENDING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.ASSET.NAMING.CONVENTION", "name": "Does asset need GS1 naming convention", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Does asset need GS1 naming convention", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASSETNAMINGCONVENTION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_NAMING_CONVENTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9515, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT VIEW", "name": "Product View", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product View", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT VIEW", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_VIEW", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT ANGLE", "name": "Product Angle", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Angle", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT.ANGLE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_ANGLE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT STATE", "name": "Product State", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product State", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT STATE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PROMOTION ID", "name": "Promo ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Promo ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROMO_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.BUSINESS.ASSET TYPE", "name": "Asset Type (eDAM)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Type (eDAM)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "OTMM.DOMAIN.OTMM_ASSETTYPE_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_BUSINESS_INFO", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7244, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200048, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.AGENCY NAME", "name": "Agency Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency Name", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.AGENCY_NAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AGENCY_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7336, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.CREATIX", "name": "CreativeX", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200059, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.CREATIVEX", "name": "Confidence", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1245, "metadata_element_list": [{"id": "FERRERO.TAB.FIELD.CREATIVEX", "name": "Platform > Rating (%)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Platform > Rating (%)", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_CREATIVEX", "column_name": "CREATIVEX_NEW", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CREATIVEX", "parent_table_name": "Confidence", "cascading_group_id": "FERRERO.CREATIVEX.CHAR", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.CREATIVEX LINK", "name": "CreativeX Hyperlink", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "CreativeX Hyperlink", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_CREATIVEX", "column_name": "CREATIVE_LINK", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.IP_RIGHTS", "name": "IP Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200046, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.IPRIGHT", "name": "IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IP Rights", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.IPRIGHTS", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IP_RIGHTS", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.BUYOUT", "name": "Touchpoint Scope", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Touchpoint Scope", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.TOTAL_BUYOUT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TOTAL_BUYOUT", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.FERRERO PROPERTY", "name": "Ferrero Property", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Ferrero Property", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.FERRERO_PROPERTY", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FERRERO_PROPERTY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200035, "metadata_element_list": [{"id": "FERRERO.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1209, "metadata_element_list": [{"id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "name": "IP Coverage, Area, Region & Market Unit", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Coverage, Area, Region & Market Unit", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "IPCOVERAGE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "cascading_group_id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHT TYPE", "name": "Copyright Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHT_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.MEDIATYPE", "name": "Media Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Media Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MEDIA_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "MEDIA_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE FROM", "name": "Expiration of Usage - From", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - From", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_FROM", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE TO", "name": "Expiration of Usage - To", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - To", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_TO", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO._DURATION", "name": "IP Duration", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Duration", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "ECOM_DURATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHTTYPE DETAILS", "name": "Copyright Type Details", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type Details", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHTTYPE_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 6, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.MARKET.VID_STAT_RIGHT", "name": "Video & Static Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200047, "metadata_element_list": [{"id": "FERRERO.MARKET.VID_N_STAT", "name": "Video and Static Right", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video and Static Right", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VID_AND_STAT_RIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.VID_STAT_TYPE", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1221, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.TYPE_VID", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Video & Static Right", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TYPE_VID_STAT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_MARKET_TYPE_VID_STAT", "column_name": "TYPE_OF_VIDEO_STATIC_RIGHT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.VID_STAT_TYPE", "parent_table_name": "Type of Video & Static Right", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKET.PROD_COMPANY", "name": "Production House", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Production House", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.PRODUCT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200050, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.LICENSIN", "name": "Licensing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Licensing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSING", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "cascading_group_id": "FERRERO.MARKET.CG.LICENSE", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.SPOT_DETAILS", "name": "Spot Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200049, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.SPOT_VERSION", "name": "Spot Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Version", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_VERSION", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_VERSION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.SPOT_TYPE", "name": "Spot Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_TYPE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.DIRECTOR_NAME", "name": "Director Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Director Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "DIRECTOR_NAME", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VIDEO_POST_PROD_COMPANY", "name": "Video Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VID_POST_PROD_CONTACT", "name": "Video Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_COMPANY", "name": "Audio Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_CONTACT", "name": "Audio Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.BROADCASTER.CODE", "name": "Broadcaster Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Broadcaster Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BROADCASTER_CODE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.TECHNICAL_VALIDATION", "name": "Technical Validation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Technical Validation", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TECHNICAL_VALIDATION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS", "name": "Media Analysis", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1002, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "name": "Categories", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 105, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY NAME", "name": "Category Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "others_"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Category Name", "values": [{"value": {"type": "string", "value": "others_"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "text_sign"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "NAME", "data_length": 100, "description": "Category Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY CONFIDENCE", "name": "Category Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 5.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Category Confidence", "values": [{"value": {"type": "decimal", "value": 5.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 12.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "CONFIDENCE", "data_length": 10, "description": "Category Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES COUNT", "name": "Faces Count", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Faces Count", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACECOUNT", "column_name": "COUNT", "data_length": 10, "description": "Faces Count", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "name": "Face Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 106, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME", "name": "Recognized Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME", "data_length": 2000, "description": "Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME CONFIDENCE", "name": "Recognized Name Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME_CONFIDENCE", "data_length": 10, "description": "Name Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE", "name": "Person Age", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE", "data_length": 10, "description": "Person Age", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE CONFIDENCE", "name": "Person Age Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Person Age Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_CONFIDENCE", "data_length": 10, "description": "Person Age Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER", "name": "Gender", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Gender", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.GENDER", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER", "data_length": 40, "description": "Gender", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER CONFIDENCE", "name": "Gender Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Gender Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER_CONFIDENCE", "data_length": 10, "description": "Gender Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.FACE COORDS", "name": "Face Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "FACE_COORDS", "data_length": 200, "description": "Face Coordinates like postion, height,width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE GROUP", "name": "Person Age Group", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age Group", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.AGE GROUP", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_GROUP", "data_length": 10, "description": "Person Age Group", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "name": "Safe Content", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 107, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONTENT TYPE", "name": "Safe Content Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Safe Content Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENTS", "data_length": 20, "description": "Safe Content Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONFIDENCE", "name": "Content Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Content Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENT_CONFIDENCE", "data_length": 10, "description": "Safe Content Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "name": "Colors", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 108, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.NAME", "name": "Color", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "White"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Color", "values": [{"value": {"type": "string", "value": "White"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "NAME", "data_length": 25, "description": "COLOR", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.PROPORTION", "name": "Color Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Color Confidence", "values": [{"is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "PROPORTION", "data_length": 10, "description": "Proportion", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.FOREGROUND", "name": "Foreground Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "White"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Foreground Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "FOREGROUND", "data_length": 25, "description": "Foreground Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.BACKGROUND", "name": "Background Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "White"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Background Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "BACKGROUND", "data_length": 25, "description": "Background Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.ISBW", "name": "Is Black and White", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "false"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Is Black and White", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "ISBW", "data_length": 10, "description": "Is Black and White", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "name": "Captions", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 109, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION TEXT", "name": "Caption Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "logo"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Caption Text", "values": [{"value": {"type": "string", "value": "logo"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "TEXT", "data_length": 2000, "description": "Caption Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION CONFIDENCE", "name": "Caption Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 38.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Caption Confidence", "values": [{"value": {"type": "decimal", "value": 38.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "CAPTION_CONFIDENCE", "data_length": 10, "description": "Caption Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "name": "Image Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 110, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.IMAGE TYPE", "name": "Analysis Image Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "clip_art"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Analysis Image Type", "values": [{"value": {"type": "string", "value": "clip_art"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_IMAGE_TYPE", "column_name": "TYPE", "data_length": 100, "description": "Image Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "parent_table_name": "Image Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.DATE", "name": "Date: Media Analysis", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-09T16:32:10+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date: Media Analysis", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MEDIA_ANALYSIS_DATE", "data_length": 25, "description": "Date Media Analysis was done on the asset.", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR LANGUAGE", "name": "Image Text Language", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "unk"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Image Text Language", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "LANGUAGE", "data_length": 10, "description": "OCR data language", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR TEXT", "name": "Text on Image", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Text on Image", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "TEXT", "data_length": 4000, "description": "OCR Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "name": "Embedded Brand Info", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 119, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.NAME", "name": "Embedded Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Kinder Chocolate"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Embedded Brand Name", "values": [{"value": {"type": "string", "value": "Kinder Chocolate"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Embedded Brand Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.CONFIDENCE", "name": "Embedded Brand Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 84.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Embedded Brand Confidence", "values": [{"value": {"type": "decimal", "value": 84.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Embedded Brand Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.COORDINATES", "name": "Embedded Brand Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "\\"top\\":0.35555555555555557,\\"left\\":0.39555555555555555,\\"width\\":0.22666666666666666,\\"height\\":0.07111111111111111"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Embedded Brand Coordinates", "values": [{"value": {"type": "string", "value": "\\"top\\":0.35555555555555557,\\"left\\":0.39555555555555555,\\"width\\":0.22666666666666666,\\"height\\":0.07111111111111111"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "COORDINATES", "data_length": 200, "description": "Embedded Brand Coordinates like position, height, width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "HYBRIS.PRODUCT.INFO", "name": "PIM Item Reference", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200027, "metadata_element_list": [{"id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "name": "Hybris Item Reference", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1206, "metadata_element_list": [{"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ID", "name": "Hybris Item ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ID", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT TAG NAME", "name": "Hybris Assignment Label", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Assignment Label", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_TAG_NAME", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ATTRIBUTE NAME", "name": "Hybris Attribute Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Attribute Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ATTRIBUTE_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT CATALOG NAME", "name": "Hybris Catalog Mnemonic", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Catalog Mnemonic", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_CATALOG_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT PK", "name": "Hybris Item PK", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item PK", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_PK", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.SYSTEM ID", "name": "Hybris System ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris System ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "SYSTEM_ID", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.ASSIGNED", "name": "Assigned", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Assigned", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "ASSIGNED", "column_name": "ASSIGNED", "data_length": 38, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PIM TYPE", "name": "PIM Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "PIM Type", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_PIM_TYPE", "column_name": "PIM_TYPE", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS VIDEO", "name": "Media Analysis Video", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1003, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "name": "Labels", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 113, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.ID", "name": "Label Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "ID", "data_length": 40, "description": "Label Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.NAME", "name": "Label Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "NAME", "data_length": 40, "description": "Label Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.APPEARANCES", "name": "Label Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "APPEARANCES", "data_length": 0, "description": "Label Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "name": "Sentiments", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 114, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.ID", "name": "Sentiment Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "ID", "data_length": 40, "description": "Sentiment Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.NAME", "name": "Sentiment Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "NAME", "data_length": 40, "description": "Sentiment Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.APPEARANCES", "name": "Sentiment Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "APPEARANCES", "data_length": 0, "description": "Sentiment Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.SEEN.DURATION.RATIO", "name": "Sentiment Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Sentiment Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "name": "Keywords", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 115, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.ID", "name": "Keyword Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "ID", "data_length": 40, "description": "Keyword Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.NAME", "name": "Keyword Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "NAME", "data_length": 40, "description": "Keyword Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.APPEARANCES", "name": "Keyword Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Keyword Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "name": "Faces", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 111, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.ID", "name": "Face Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "ID", "data_length": 40, "description": "Face Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.NAME", "name": "Face Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "NAME", "data_length": 40, "description": "Face Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.TITLE", "name": "Face Title", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Title", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "TITLE", "data_length": 249, "description": "Face Title", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.DESCRIPTION", "name": "Face Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Face Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.APPEARANCES", "name": "Face Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "APPEARANCES", "data_length": 0, "description": "Face Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SPEAKER.FACE.ID", "name": "Video Speaker Object Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Speaker Object Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "THUMBNAIL_OBJECT_ID", "data_length": 40, "description": "Video Speaker Object Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.SEEN.DURATION.RATIO", "name": "Face Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "SEEN_DURATION_RATIO", "data_length": 20, "description": "Face Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "name": "Brands", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 112, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.ID", "name": "Video Brand Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "ID", "data_length": 40, "description": "Brand Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.NAME", "name": "Video Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Brand Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.DESCRIPTION", "name": "Video Brand Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Brand Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.WIKIURL", "name": "Video Brand Wiki URL", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Wiki URL", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "WIKIURL", "data_length": 200, "description": "Brand Wiki URL", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.APPEARANCES", "name": "Video Brand Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Brand Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.SEEN.DURATION.RATIO", "name": "Video Brand Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Brand Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "name": "Speeches", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 116, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.ID", "name": "SpeechText Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "SpeechText Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "ID", "data_length": 40, "description": "SpeechText Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXT", "name": "Speech Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Text", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXT", "data_length": 1000, "description": "Speech Text", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXTTYPE", "name": "Speech Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXTTYPE", "data_length": 40, "description": "Speech Type", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.START TIME", "name": "Speech Start Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Start Time", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "START_TIME", "data_length": 40, "description": "Speech Start Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.END TIME", "name": "Speech End Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech End Time", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "END_TIME", "data_length": 40, "description": "Speech End Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "name": "Speakers", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 122, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.ID", "name": "Speaker Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "ID", "data_length": 40, "description": "Speaker Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.NAME", "name": "Speaker Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "NAME", "data_length": 100, "description": "Speaker Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.APPEARANCES", "name": "Speaker Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "APPEARANCES", "data_length": 0, "description": "Speaker Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.FIELDGROUP.LOCALASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200057, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1239, "metadata_element_list": [{"id": "FERRERO.FIELD.COUNTRY", "name": "LOCAL COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "LOCAL COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USER", "name": "USER", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "USER", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_USER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.ASSOCIATION", "name": "TYPE OF ASSOCIATION", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "TYPE OF ASSOCIATION", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_ASSOCIATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.VALUE", "name": "VALUE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "VALUE", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_VALUE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "CG.CATEGORY.FADEL ASSET INFORMATION", "name": "Rights Asset Information", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200064, "metadata_element_list": [{"id": "CG.FIELD.RIGHTS MANAGED", "name": "Fadel IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fadel IP Rights", "enabled": true, "options": "", "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_RIGHTS_MANAGED_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGED", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.NEEDS RIGHTS MANAGEMENT", "name": "Needs Rights Management", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "10", "field_value": {"type": "string", "value": "N"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Needs Rights Management", "enabled": true, "options": "", "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_NEEDS_RIGHTS_MANAGEMENT_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "NEEDS_RIGHTS_MANAGEMENT", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.RIGHTS MANAGEMENT DESCRIPTION", "name": "Rights Management Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Rights Management Description", "enabled": true, "options": "", "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGEMENT_DESCRIPTION", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.RIGHTS MANAGEMENT STATUS", "name": "Rights Management Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Rights Management Status", "enabled": true, "options": "", "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_RIGHTS_MANAGEMENT_STATUS_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGEMENT_STATUS", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.FORCE SYNC", "name": "Force Sync", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Force Sync", "enabled": true, "options": "", "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_FORCE_SYNC_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "FORCE_SYNC", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.LAST SYNC TIME", "name": "Date of last data sync", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date of last data sync", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "LAST_SYNC_TIME", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "CG.CATEGORY.FADEL RIGHTS INFORMATION", "name": "Rights Information", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200065, "metadata_element_list": [{"id": "CG.TABLE.RIGHTS", "name": "Rights", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1256, "metadata_element_list": [{"id": "CG.FIELD.RIGHT TERRITORIES", "name": "Territory", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Territory", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "TERRITORY", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT USES", "name": "Use", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Use", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "USAGE", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT IN DATE", "name": "In Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "In Date", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "IN_DATE", "data_length": 10, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT OUT DATE", "name": "Out Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Out Date", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "OUT_DATE", "data_length": 10, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "saved_values_behavior_mode": 0}]}]}, {"id": "CG.CATEGORY.FADEL AGREEMENTS AND PARTIES", "name": "Agreements and Parties", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200067, "metadata_element_list": [{"id": "CG.TABLE.PARTIES.AGREEMENTS VW", "name": "Customized Table Parties and Agreements", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1258, "metadata_element_list": [{"id": "CG.FIELD.AGREEMENT NUMBER VW", "name": "Agreement Number ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Number ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_NUMBER", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT DESCRIPTION VW", "name": "Agreement Description ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Description ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_DESCRIPTION", "data_length": 2000, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT START DATE VW", "name": "Agreement Start Date ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Start Date ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_START_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT END DATE VW", "name": "Agreement End Date ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement End Date ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_END_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY NAME VW", "name": "Party Name ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Name ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_NAME", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY ROLE VW", "name": "Party Role ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Role ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_ROLE", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY EMAIL ADDRESS VW", "name": "Party Email Address ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Email Address ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_EMAIL_ADDRESS", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY PHONE NUMBER VW", "name": "Party Phone Number ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Phone Number ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_PHONE_NUMBER", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PRIMARY PARTY CONTACT VW", "name": "Primary Party Contact ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Primary Party Contact ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PRIMARY_PARTY_CONTACT", "data_length": 200, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 8, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}], "has_multilingual_fields": false}, "mime_type": "image/jpeg", "path_list": [{"parents": [{"id": "90962e8228075df2ada17d7fb668aaca95c87092", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "90962e8228075df2ada17d7fb668aaca95c87092", "sequence_number": 0}, {"id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "name": "MASTER FOR FER ROCH", "container_state": "NORMAL", "original_uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "sequence_number": 0}, {"id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "name": "01. DE - Rocher ", "container_state": "NORMAL", "original_uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "sequence_number": 0}, {"id": "091216b59cad7f1ea815164c26db27e350c54023", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "sequence_number": 0}, {"id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "name": "01. Rocher", "container_state": "NORMAL", "original_uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "sequence_number": 0}, {"id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "name": "01. Ferrero Rocher", "container_state": "NORMAL", "original_uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "sequence_number": 0}, {"id": "93b0968611de11160ed068afeb9930b9965bd5ff", "name": "03. Premium Chocolate", "container_state": "NORMAL", "original_uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "sequence_number": 0}], "complete": true, "sequence_number": 2, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "90962e8228075df2ada17d7fb668aaca95c87092", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "90962e8228075df2ada17d7fb668aaca95c87092", "sequence_number": 0}, {"id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "name": "MASTER FOR FER ROCH", "container_state": "NORMAL", "original_uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "sequence_number": 0}, {"id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "name": "01. DE - Rocher ", "container_state": "NORMAL", "original_uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "sequence_number": 0}, {"id": "bfbc248a12a4bf0382406620f0d9ec41ff42e35e", "name": "01. Ferrero Rocher", "container_state": "NORMAL", "original_uoi_id": "bfbc248a12a4bf0382406620f0d9ec41ff42e35e", "sequence_number": 0}, {"id": "3d7debea6815ae46c9598191b1c645007666292a", "name": "03 . Premium Chocolate", "container_state": "NORMAL", "original_uoi_id": "3d7debea6815ae46c9598191b1c645007666292a", "sequence_number": 0}, {"id": "c0bb10be2b8f96ee4d27a2dfb7e0d03de68cf114", "name": "DE", "container_state": "NORMAL", "original_uoi_id": "c0bb10be2b8f96ee4d27a2dfb7e0d03de68cf114", "sequence_number": 0}, {"id": "b124e1ed196028bdd0e2c093e28078ca8d9ad462", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "b124e1ed196028bdd0e2c093e28078ca8d9ad462", "sequence_number": 0}, {"id": "68ce80e8c8a30badb82dabfd823886a6fa6fe309", "name": "Y - Geography", "container_state": "NORMAL", "original_uoi_id": "68ce80e8c8a30badb82dabfd823886a6fa6fe309", "sequence_number": 0}], "complete": true, "sequence_number": 2, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}], "creator_id": "1003", "asset_state": "NORMAL", "checked_out": false, "folder_path": "", "content_size": 6776, "content_type": "BITMAP", "content_state": "NORMAL", "date_imported": "2026-01-09T16:31:22.763+01:00", "import_job_id": 224850, "subscribed_to": false, "collection_ids": [], "latest_version": true, "legacy_model_id": 116, "content_editable": true, "import_user_name": "bizAdmin", "date_last_updated": "2026-01-09T16:34:31.08+01:00", "metadata_model_id": "ECOMMERCE", "original_asset_id": "5012626b17281761b51535780cc82a1a84a4b649", "rendition_content": {"preview_content": {"id": "483a6862ad45101fcb3200cdfda510b3b8f23b55", "url": "/otmmapi/v6/renditions/483a6862ad45101fcb3200cdfda510b3b8f23b55", "name": "kinder joy-S.png", "width": 225, "height": 225, "mime_type": "image/png", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "PREVIEW", "content_path": "data\\\\repository\\\\screen\\\\vol0\\\\186\\\\kinder joy-S_483a6862ad45101fcb3200cdfda510b3b8f23b55.png", "content_size": 29679, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "thumbnail_content": {"id": "fd0e0b9bc84f01f521a79267e6c752d47be9cb4a", "url": "/otmmapi/v6/renditions/fd0e0b9bc84f01f521a79267e6c752d47be9cb4a", "name": "kinder joy-T.png", "width": 225, "height": 225, "mime_type": "image/png", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "THUMBNAIL", "content_path": "data\\\\repository\\\\thumb\\\\vol0\\\\201\\\\kinder joy-T_fd0e0b9bc84f01f521a79267e6c752d47be9cb4a.png", "content_size": 29679, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_content_info": {"master_content": {"id": "14287549e8fcc004cac9474bcd07347f5f79da32", "url": "/otmmapi/v6/renditions/14287549e8fcc004cac9474bcd07347f5f79da32", "name": "kinder joy.jpg", "width": 225, "height": 225, "mime_type": "image/jpeg", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\227\\\\kinder joy_14287549e8fcc004cac9474bcd07347f5f79da32.jpg", "content_size": 6776, "unit_of_size": "BYTES", "content_checksum": "284273ca5f2b6196e9d65fd8443738e2", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_state_user_id": "1003", "master_content_info": {"id": "14287549e8fcc004cac9474bcd07347f5f79da32", "url": "/otmmapi/v6/renditions/14287549e8fcc004cac9474bcd07347f5f79da32", "name": "kinder joy.jpg", "width": 225, "height": 225, "mime_type": "image/jpeg", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\227\\\\kinder joy_14287549e8fcc004cac9474bcd07347f5f79da32.jpg", "content_size": 6776, "unit_of_size": "BYTES", "content_checksum": "284273ca5f2b6196e9d65fd8443738e2", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "delivery_service_url": "https://ppr.dam.ferrero.com/adaptivemedia/rendition?id=5012626b17281761b51535780cc82a1a84a4b649", "product_associations": false, "security_policy_list": [{"id": 5467, "name": "Marketing Viewer", "status": "NORMAL", "created_by": "1003", "create_date": "2023-10-06T16:52:07.297+02:00", "description": "Marketing Viewer", "ownership_type": "PUBLIC"}], "thumbnail_content_id": "fd0e0b9bc84f01f521a79267e6c752d47be9cb4a", "content_state_user_id": "1003", "content_state_user_name": "OTMM BusinessAdmin", "asset_lock_state_user_id": "1003", "metadata_state_user_name": "OTMM BusinessAdmin", "access_control_descriptor": {"permissions_map": {"entry": [{"key": "text.securityPolicy.permission.Custom04Permission", "value": true}, {"key": "text.securityPolicy.permission.ContentEditPermission", "value": true}, {"key": "text.securityPolicy.permission.AssetViewPermission", "value": true}, {"key": "text.securityPolicy.permission.ProjectViewPermission", "value": true}, {"key": "text.securityPolicy.permission.MembershipEditPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom03Permission", "value": true}, {"key": "text.securityPolicy.permission.MetaDataEditPermission", "value": true}, {"key": "text.securityPolicy.permission.EditParentsPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom02Permission", "value": true}, {"key": "text.securityPolicy.permission.ExportPermission", "value": true}, {"key": "text.securityPolicy.permission.SummaryViewPermission", "value": true}, {"key": "text.securityPolicy.permission.PreviewViewPermission", "value": true}, {"key": "text.securityPolicy.permission.SubscribePermission", "value": true}, {"key": "text.securityPolicy.permission.DeleteAssetPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom01Permission", "value": true}]}}, "content_lock_state_user_id": "1003", "asset_state_last_update_date": "2026-01-09T16:34:31.08+01:00", "content_lock_state_user_name": "bizAdmin", "metadata_lock_state_user_name": "bizAdmin", "content_state_last_update_date": "2026-01-09T16:31:23.123+01:00", "inherited_metadata_collections": [{"container_id": "90962e8228075df2ada17d7fb668aaca95c87092", "container_name": "05. Final Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "90962e8228075df2ada17d7fb668aaca95c87092", "originator_id": "90962e8228075df2ada17d7fb668aaca95c87092", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "05. Final Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "container_name": "MASTER FOR FER ROCH", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "MASTER FOR FER ROCH"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000779"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "MASTER_FOR_FER_ROCH_CQ_LG_DE_PRE_0000779"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local comm on global brands"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Master Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Master Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2026/2027"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "B1"}, "display_value": "Master campaign ready for re-mastering", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ADDITIONALAPPROVER", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.LICENSING", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "d0ef653291e269a7d1ddf0ebfedd1c6ad70b1c59"}, "metadata_element": {"id": "FERRERO.FIELD.LICENSING", "name": "Campaign License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "LICENSING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}}]}, {"container_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "container_name": "01. DE - Rocher ", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "bb01cf85444107f22341d2b88421f0cbaade0bf9"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E006"}, "display_value": "GERMANY", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Local DE Editable Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Premium Chocolate Local DE Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "8f497ce53d23899c7c09aa5a7ca69c9f55c3a62d"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E64"}, "display_value": "GERMANY", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "ca70a6d55e4277ecbef2a01a593c614501cbcf74"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "3e9d669ab1047383d0416ba40af75744148c94c8"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0e241fc386dcd91baa31a409e297169fe4a352c2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "2e3e0f2be0e487b540d9b63cb8c0e9ed9c6b1bb6"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "359c98154f230a60acc6b4eb048e129411d7a778"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "b3698893fc223e8371f4e4c0d560d0536c724a09"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "e92f9f10c0c29dda8261218c2c72a0baa66472f2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "15dff42c3b196ba3ae5b3c2ea33f00e347e6f654"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Extended Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0ae044cd9dddf86cd9406c9edc3996b18c430be0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "name": "AMMC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AMMC", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LOCAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "7806fed6127b50c21f6b03e1f7b63f3dedc1e8d1"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "RMMC", "values": [{"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "4c8a2d6e178638bfacfeaf3f7f6f1000304693a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "name": "Product Asset Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Product Asset Approval Ferrero Rocher Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Asset Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCT_ASSET_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local comm on global brands"}, "display_value": "Local comm on global brands", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "5a1ae26558efdc03336c0df838dd9e7c2a51c687"}, "metadata_element": {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "name": "Market Unit", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market Unit", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETUNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "MARKET_UNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "091216b59cad7f1ea815164c26db27e350c54023", "container_name": "EU", "container_type_id": "GEOGRAPHYLOCAL", "container_type_name": "L4 - GEOGRAPHY LOCAL", "inherited_metadata_values": [{"id": "FERRERO.MARKET.FOLDER.GLOBAL", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "4c4d4bf36bf8b1ace55f990e78d6332a9cb20990"}, "metadata_element": {"id": "FERRERO.MARKET.FOLDER.GLOBAL", "name": "Global/Local (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "LOCAL"}, "display_value": "Local", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local (Marketing)", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "GLOBALLOCAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_AREA", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "3dc200c993ab8263952dc6da1498026f615f45dd"}, "metadata_element": {"id": "MARKETING_AREA", "name": "AREA", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E010"}, "display_value": "EUROPE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "AREA", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "AREA", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "AREA", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "dc7749c3e113ec9e0b9e9a3840ea55673ca5e49f"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "f2d658a3829c2ea158ae70a4b4e7928bcf88f8e2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "972d0258a82de85672bd84d8af68cdb67ad3d3ca"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "1212505ad3fe4c9d7458568f3d95aeb4c4e5c37e"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "9d1dfdef55ff7a3eb03552988ddf729c7a0f5107"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "54f006eeb366121a29ee98da33d437615dcd34e0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "1fd8802010e30d44cebb2f3eb090b12ac550f97d"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "8b6e1d8f7dc3c4671cfc11a2914d838ca3ee3f3b"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "be0dc9a87262ee7fd165237b531ba3b7aa93a260"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "2f99f0f0f9e43fb34df9222c8b73a86fb78e473e"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "container_name": "01. Rocher", "container_type_id": "GLOBALBRAND", "container_type_name": "L3 - BRAND", "inherited_metadata_values": [{"id": "FERRERO.TABULAR.NEW.BRAND", "tabular": true, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "9bb1c183135f5240f09132aef59c4ea48c762381"}, "metadata_element": {"id": "FERRERO.TABULAR.NEW.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF04"}, "display_value": "ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND (Marketing)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF04"}, "display_value": "ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "BRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TABULAR_BRAND", "column_name": "BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.NEW.BRAND", "parent_table_name": "BRAND (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "tabular": true, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "a37b13c02cba799378211e17b73234a0d836f9b6"}, "metadata_element": {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "CQ"}, "display_value": "FERRERO ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND(HARMONIZED)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "CQ"}, "display_value": "FERRERO ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.HARMONIZEDBRAND", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_HARMONIZEDBRAND", "column_name": "HARMONIZEDBRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.HARMONIZEDBRAND", "parent_table_name": "BRAND(HARMONIZED)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "AGENCY.COLLABORATION", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "183d6e0957a9940f9b18ef44f46d957802b63397"}, "metadata_element": {"id": "AGENCY.COLLABORATION", "name": "Agency collaboration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency collaboration", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "AGENCY_COLLABORATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "AGENCY.SHARING", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "d0e2b725ddfdc452cc3ba750bbe8ec059c6b01ba"}, "metadata_element": {"id": "AGENCY.SHARING", "name": "Agency sharing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency sharing", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "AGENCY_SHARING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "CONTENT.SCALING.AGENCYNAME", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "f9dfa695cc5ef8cd3fafada4e44cfdaa1522d58a"}, "metadata_element": {"id": "CONTENT.SCALING.AGENCYNAME", "name": "Content Scaling agency name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Scaling agency name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENTSCALING_AGENCYNAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "container_name": "01. Ferrero Rocher", "container_type_id": "GLOBALSUBCATEGORY", "container_type_name": "L2 - SUBCATEGORY", "inherited_metadata_values": [{"id": "MARKETING_SUBCATEGORY", "tabular": false, "value_id": {"uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "originator_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "inherited_field_id": "3000ad591e09b5c75f85fc2ccbb9ebeb31b3ab78"}, "metadata_element": {"id": "MARKETING_SUBCATEGORY", "name": "SUBCATEGORY", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Mart-Ferrero-Rocher"}, "display_value": "Ferrero Rocher", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "SUBCATEGORY", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "SUBCATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "SUBCATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "tabular": true, "value_id": {"uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "originator_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "inherited_field_id": "2c751ce760d88c0e271925ea5149348106944bfa"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Subcategory Owner", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_SUBCATEGORY_OWNER_TM", "column_name": "SUBCATEGORY_OWNER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "parent_table_name": "Subcategory Owner", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "container_name": "03. Premium Chocolate", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "originator_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E06"}, "display_value": "PREMIUM CHOCOLATE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "originator_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final Approver BPS ", "values": [{"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}], "asset_lock_state_last_update_date": "2026-01-09T16:34:31.167+01:00", "content_lock_state_last_update_date": "2026-01-09T16:31:23.207+01:00"} \N \N active f \N \N 2026-01-16 20:54:08.736826 2026-01-16 20:54:08.736826 2026-01-16 20:54:08.736826 17 Mx1uKv ccc426749470e3d170bb5101f9f3e049fe26a8ef kinder-joy_video .mp4 \N video/mp4 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 90962e8228075df2ada17d7fb668aaca95c87092 Box File ID: 2105222423023\nBox URL: https://app.box.com/file/2105222423023\nDAM Asset ID: ccc426749470e3d170bb5101f9f3e049fe26a8ef {"name": "kinder-joy_video.mp4", "links": {"links": [], "source_id": "ccc426749470e3d170bb5101f9f3e049fe26a8ef"}, "locked": false, "deleted": false, "expired": false, "version": 1, "asset_id": "ccc426749470e3d170bb5101f9f3e049fe26a8ef", "metadata": {"id": "ECOMMERCE", "name": "Marketing Asset", "type": "com.artesia.metadata.MetadataModel", "legacy_id": 116, "metadata_element_list": [{"id": "FERRERO.CATEGORY.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200054, "metadata_element_list": [{"id": "FERRERO.FIELD.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Status", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.CONTENT_STATUS", "edit_type": "COMBO_NOTNULL", "facetable": false, "searchable": true, "table_name": "FERRERO_CONTENT_STATUS_MD", "column_name": "CONTENT_STATUS", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9215, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRER.CATEGORY.ASSET_INFO", "name": "Asset Info", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200022, "metadata_element_list": [{"id": "FERRERO.FIELD.MKTG.ASSET TYPE", "name": "Asset Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "brandbook"}, "display_value": "Brand Book", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.ASSETTYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.FISCAL YEAR", "name": "Release Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2028/2029"}, "display_value": "2028/2029", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Release Fiscal Year", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_DOMAIN_FISCAL_YEAR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "FISCAL__YEAR", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "name": "Main Languages", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1210, "metadata_element_list": [{"id": "MAIN_LANGUAGES", "name": "MAIN LANGUAGES", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "MAIN LANGUAGES", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MAIN LAGUAGES_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MAIN_LANGUAGE_TABLE", "column_name": "MAIN_LANGUAGE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "parent_table_name": "Main Languages", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.ASSET DESCRIPTION", "name": "Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Description", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "DESCR", "data_length": 249, "description": "Descriptive information", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.FLAVOUR", "name": "Flavour", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Flavour", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.FLAVOUR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FLAVOUR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.SIZE", "name": "Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Size", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.SIZE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SIZE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1241, "metadata_element_list": [{"id": "FERRERO.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Compliance", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ASSETCOMPLIANCE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_COMPLIANCE", "column_name": "ASSET_COMPLIANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "parent_table_name": "Asset Compliance", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.TAG DETAILS", "name": "Tag Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 118, "metadata_element_list": [{"id": "ARTESIA.FIELD.TAG", "name": "Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "kinder", "field_value": {"type": "string", "value": "kinder"}, "display_value": "kinder", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Tag", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "kinder", "field_value": {"type": "string", "value": "kinder"}, "display_value": "kinder", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.TAGS", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "OTMM_TAGS", "column_name": "TAG", "data_length": 80, "description": "Tag", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG CONFIDENCE", "name": "Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Confidence", "values": [{"is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Confidence", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG TYPE", "name": "Tag Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Tag Type", "values": [{"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "TAG_TYPE", "data_length": 10, "description": "Tag Type", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED BY", "name": "Associated By", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Associated By", "values": [{"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_BY", "data_length": 10, "description": "Associated By", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED DATE", "name": "Associated Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-09T16:33:12.92+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Associated Date", "values": [{"value": {"type": "dateTime", "value": "2026-01-09T16:33:12.92+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_DATE", "data_length": 10, "description": "Associated Date", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.STATE", "name": "Global/Local", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "GLOBAL"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO_NOTNULL", "facetable": true, "searchable": true, "table_name": "FERRERO_IC_ASSET_DETAILS", "column_name": "ASSET_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.ASPECT RATIO", "name": "Aspect Ratio (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio (Marketing)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASPECT_RATIO", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASPECT_RATIO", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "name": "Tag (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1222, "metadata_element_list": [{"id": "MARKETING_TAG", "name": "Marketing Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Marketing Tag", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.DOMAIN.TAG", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TAG_MARKET", "column_name": "TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "parent_table_name": "Tag (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.TAGS", "name": "Auto-Generated Tags", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Auto-Generated Tags", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "AUTO_GENERATED_TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CERTIFIER", "name": "Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approver", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.MARKETING.FIELD.APPROVAL DATE", "name": "Approval__Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approval__Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.LEGAL APPROVAL DATE", "name": "Legal Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CERTIFIER", "name": "IA&CC Certifier", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Certifier", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CC APPROVAL DATE", "name": "IA&CC Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "name": "Extended Approval", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1230, "metadata_element_list": [{"id": "FERRERO.FIELD.EXTENDED.APPROVAL", "name": "Extended Approval required by:", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended Approval required by:", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COMMENTS", "name": "Comment", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comment", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "COMMENTS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.DATE", "name": "Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USERS", "name": "User ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "User ID", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "USERS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXTENDED.JOBID", "name": "Extended JobID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended JobID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.MIGRATION.INDEX", "name": "Migration Index", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Migration Index", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MIGRATION.INDEX", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MIGRATION_INDEX", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "FERRERO_MARKET_MARKETING_CREATOR", "name": "Marketing Creator", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Marketing Creator", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.CREATOR", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MARKETING_CREATOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "ARTESIA.FIELD.IS LATEST VERSION", "name": "Is Latest Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Y"}, "display_value": "Yes", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Is Latest Version", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.YES_NO", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "IS_LATEST_VERSION", "data_length": 1, "description": "Is this the latest version? (Y/N)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET VERSION", "name": "Asset Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 1}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Version", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "INTEGER", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "VERSION", "data_length": 12, "description": "Version number of asset", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET_ID", "name": "Asset ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ccc426749470e3d170bb5101f9f3e049fe26a8ef"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset ID", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "LOGICAL_UOI_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.ECOMMERCE STATUS", "name": "Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "PUBLISHED"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Status", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "ASSET_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CREATOR", "name": "Uploaded by", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Uploaded by", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_USER_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.FIELD.CREATION DATE", "name": "Upload Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-09T16:31:22.76+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Upload Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_DT", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.ASSET NAME", "name": "Asset Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "kinder-joy_video.mp4"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Name", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "description": "Original name of master object", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.CONTENT TYPE", "name": "Content Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "VIDEO"}, "display_value": "Video", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Type", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.CONTENT_TYPES", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "CONTENT_TYPE", "data_length": 8, "description": "Content Type", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.MIME TYPE", "name": "File Extension", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "video/mp4"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Extension", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_MIME_TYPE", "data_length": 80, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.FILE.SIZE", "name": "File Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "long", "value": 2508962}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Size", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "LONG", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_SIZE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP RESOLUTION", "name": "Bitmap Resolution", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Resolution", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_RESOLUTION", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP WIDTH", "name": "Bitmap Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Width", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_WIDTH", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP HEIGHT", "name": "Bitmap Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Height", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_HEIGHT", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "name": "Approval Metadata", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1249, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.DEPARTMENT", "name": "Department", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Department", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "DEPARTMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.CERTIFIER", "name": "Certifier", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Certifier", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL DATE", "name": "Approval Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Approval Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "APPROVAL_DATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.COMMENT", "name": "Comments", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comments", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "COMMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.TYPE OF APPROVAL", "name": "Type of Approval", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Approval", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "TYPE_OF_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL STATUS", "name": "Approval Status", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Approval Status", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "APPROVAL_STATUS", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.SUB JOBID", "name": "Sub Job Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sub Job Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.VIDEO.BIT_RATE", "name": "Bitrate", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 2382114.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitrate", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "BIT_RATE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.EMBEDDED.FIELD.DURATION", "name": "Duration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00:00:08:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Duration", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "DURATION_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.ASPECT RATIO", "name": "Aspect Ratio", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "1.778"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "ASPECT_RATIO", "data_length": 30, "displayable": false, "instructions": "ASPECT_RATIO", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME HEIGHT", "name": "Frame Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 1080}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Height", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_HEIGHT", "data_length": 12, "displayable": true, "instructions": "FRAME_HEIGHT", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME WIDTH", "name": "Frame Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 1920}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Width", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_WIDTH", "data_length": 12, "displayable": true, "instructions": "FRAME_WIDTH", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.ASPECT.RATIO.POC", "name": "Aspect Ratio(POC)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "16:9"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio(POC)", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASPECT_RATIO_TABLE", "column_name": "ASPECT_RATIO", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "PRODUCT.DETAILS", "name": "Product Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200029, "metadata_element_list": [{"id": "FERRERO.TABLE.EANCODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1208, "metadata_element_list": [{"id": "EAN_CODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "EAN CODE/ 77 CODE", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "EAN.CODE", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "EAN_CODE", "column_name": "EAN_CODE_DESCRIPTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "COUNTRY", "name": "COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "EAN_CODE", "column_name": "COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKETING.ADVANCE.PRODUCT.LINK", "name": "Asset-to-product relation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset-to-product relation", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_MARKETING_ADVANCE_PRODUCT_LINK", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ADVANCE_PRODUCT_LINK", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 10182, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.SUB BRAND", "name": "Sub-Brands", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Sub-Brands", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.SUBBRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "SUB_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT WEIGHT", "name": "Product Weight", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Weight", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_WEIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.CONSUMER UNIT PACKAGING", "name": "Consumer Unit Packaging", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Consumer Unit Packaging", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PACK", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "CONSUMER_UNIT_PACKAGING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.4 DIGIT CODE", "name": "4 Digit Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "4 Digit Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "DIGITCODE", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERREO.ECOM.RETAILER_SPECIFIC_FIELD", "name": "Retailer Specific", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Retailer Specific", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "RETAILER_SPECIFIC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "cascading_group_id": "FERRERO.RETAILER.SPECIFIC", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY START PERIOD", "name": "Asset validity start period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-11T00:00:00+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity start period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_STARTING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY END PERIOD", "name": "Asset validity end period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-03-31T00:00:00+02:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity end period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_ENDING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.ASSET.NAMING.CONVENTION", "name": "Does asset need GS1 naming convention", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Does asset need GS1 naming convention", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASSETNAMINGCONVENTION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_NAMING_CONVENTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9515, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT VIEW", "name": "Product View", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product View", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT VIEW", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_VIEW", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT ANGLE", "name": "Product Angle", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Angle", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT.ANGLE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_ANGLE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT STATE", "name": "Product State", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product State", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT STATE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PROMOTION ID", "name": "Promo ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Promo ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROMO_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.BUSINESS.ASSET TYPE", "name": "Asset Type (eDAM)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Type (eDAM)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "OTMM.DOMAIN.OTMM_ASSETTYPE_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_BUSINESS_INFO", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7244, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200048, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.AGENCY NAME", "name": "Agency Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency Name", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.AGENCY_NAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AGENCY_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7336, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.CREATIX", "name": "CreativeX", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200059, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.CREATIVEX", "name": "Confidence", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1245, "metadata_element_list": [{"id": "FERRERO.TAB.FIELD.CREATIVEX", "name": "Platform > Rating (%)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Platform > Rating (%)", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_CREATIVEX", "column_name": "CREATIVEX_NEW", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CREATIVEX", "parent_table_name": "Confidence", "cascading_group_id": "FERRERO.CREATIVEX.CHAR", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.CREATIVEX LINK", "name": "CreativeX Hyperlink", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "CreativeX Hyperlink", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_CREATIVEX", "column_name": "CREATIVE_LINK", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.IP_RIGHTS", "name": "IP Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200046, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.IPRIGHT", "name": "IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IP Rights", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.IPRIGHTS", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IP_RIGHTS", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.BUYOUT", "name": "Touchpoint Scope", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Touchpoint Scope", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.TOTAL_BUYOUT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TOTAL_BUYOUT", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.FERRERO PROPERTY", "name": "Ferrero Property", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Ferrero Property", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.FERRERO_PROPERTY", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FERRERO_PROPERTY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200035, "metadata_element_list": [{"id": "FERRERO.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1209, "metadata_element_list": [{"id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "name": "IP Coverage, Area, Region & Market Unit", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Coverage, Area, Region & Market Unit", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "IPCOVERAGE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "cascading_group_id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHT TYPE", "name": "Copyright Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHT_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.MEDIATYPE", "name": "Media Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Media Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MEDIA_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "MEDIA_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE FROM", "name": "Expiration of Usage - From", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - From", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_FROM", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE TO", "name": "Expiration of Usage - To", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - To", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_TO", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO._DURATION", "name": "IP Duration", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Duration", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "ECOM_DURATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHTTYPE DETAILS", "name": "Copyright Type Details", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type Details", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHTTYPE_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 6, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.MARKET.VID_STAT_RIGHT", "name": "Video & Static Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200047, "metadata_element_list": [{"id": "FERRERO.MARKET.VID_N_STAT", "name": "Video and Static Right", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video and Static Right", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VID_AND_STAT_RIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.VID_STAT_TYPE", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1221, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.TYPE_VID", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Video & Static Right", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TYPE_VID_STAT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_MARKET_TYPE_VID_STAT", "column_name": "TYPE_OF_VIDEO_STATIC_RIGHT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.VID_STAT_TYPE", "parent_table_name": "Type of Video & Static Right", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKET.PROD_COMPANY", "name": "Production House", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Production House", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.PRODUCT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200050, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.LICENSIN", "name": "Licensing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Licensing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSING", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "cascading_group_id": "FERRERO.MARKET.CG.LICENSE", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.SPOT_DETAILS", "name": "Spot Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200049, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.SPOT_VERSION", "name": "Spot Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Version", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_VERSION", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_VERSION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.SPOT_TYPE", "name": "Spot Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_TYPE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.DIRECTOR_NAME", "name": "Director Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Director Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "DIRECTOR_NAME", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VIDEO_POST_PROD_COMPANY", "name": "Video Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VID_POST_PROD_CONTACT", "name": "Video Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_COMPANY", "name": "Audio Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_CONTACT", "name": "Audio Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.BROADCASTER.CODE", "name": "Broadcaster Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Broadcaster Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BROADCASTER_CODE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.TECHNICAL_VALIDATION", "name": "Technical Validation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Technical Validation", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TECHNICAL_VALIDATION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS", "name": "Media Analysis", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1002, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "name": "Categories", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 105, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY NAME", "name": "Category Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Category Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "NAME", "data_length": 100, "description": "Category Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY CONFIDENCE", "name": "Category Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Category Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "CONFIDENCE", "data_length": 10, "description": "Category Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES COUNT", "name": "Faces Count", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Faces Count", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACECOUNT", "column_name": "COUNT", "data_length": 10, "description": "Faces Count", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "name": "Face Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 106, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME", "name": "Recognized Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME", "data_length": 2000, "description": "Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME CONFIDENCE", "name": "Recognized Name Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME_CONFIDENCE", "data_length": 10, "description": "Name Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE", "name": "Person Age", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE", "data_length": 10, "description": "Person Age", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE CONFIDENCE", "name": "Person Age Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Person Age Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_CONFIDENCE", "data_length": 10, "description": "Person Age Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER", "name": "Gender", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Gender", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.GENDER", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER", "data_length": 40, "description": "Gender", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER CONFIDENCE", "name": "Gender Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Gender Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER_CONFIDENCE", "data_length": 10, "description": "Gender Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.FACE COORDS", "name": "Face Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "FACE_COORDS", "data_length": 200, "description": "Face Coordinates like postion, height,width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE GROUP", "name": "Person Age Group", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age Group", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.AGE GROUP", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_GROUP", "data_length": 10, "description": "Person Age Group", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "name": "Safe Content", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 107, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONTENT TYPE", "name": "Safe Content Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Safe Content Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENTS", "data_length": 20, "description": "Safe Content Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONFIDENCE", "name": "Content Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Content Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENT_CONFIDENCE", "data_length": 10, "description": "Safe Content Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "name": "Colors", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 108, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.NAME", "name": "Color", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Color", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "NAME", "data_length": 25, "description": "COLOR", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.PROPORTION", "name": "Color Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Color Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "PROPORTION", "data_length": 10, "description": "Proportion", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.FOREGROUND", "name": "Foreground Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Foreground Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "FOREGROUND", "data_length": 25, "description": "Foreground Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.BACKGROUND", "name": "Background Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Background Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "BACKGROUND", "data_length": 25, "description": "Background Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.ISBW", "name": "Is Black and White", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Is Black and White", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "ISBW", "data_length": 10, "description": "Is Black and White", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "name": "Captions", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 109, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION TEXT", "name": "Caption Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Caption Text", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "TEXT", "data_length": 2000, "description": "Caption Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION CONFIDENCE", "name": "Caption Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Caption Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "CAPTION_CONFIDENCE", "data_length": 10, "description": "Caption Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "name": "Image Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 110, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.IMAGE TYPE", "name": "Analysis Image Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Analysis Image Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_IMAGE_TYPE", "column_name": "TYPE", "data_length": 100, "description": "Image Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "parent_table_name": "Image Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.DATE", "name": "Date: Media Analysis", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-09T16:33:12+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date: Media Analysis", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MEDIA_ANALYSIS_DATE", "data_length": 25, "description": "Date Media Analysis was done on the asset.", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR LANGUAGE", "name": "Image Text Language", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Image Text Language", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "LANGUAGE", "data_length": 10, "description": "OCR data language", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR TEXT", "name": "Text on Image", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Text on Image", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "TEXT", "data_length": 4000, "description": "OCR Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "name": "Embedded Brand Info", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 119, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.NAME", "name": "Embedded Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Embedded Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Embedded Brand Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.CONFIDENCE", "name": "Embedded Brand Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Embedded Brand Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Embedded Brand Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.COORDINATES", "name": "Embedded Brand Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Embedded Brand Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "COORDINATES", "data_length": 200, "description": "Embedded Brand Coordinates like position, height, width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "HYBRIS.PRODUCT.INFO", "name": "PIM Item Reference", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200027, "metadata_element_list": [{"id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "name": "Hybris Item Reference", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1206, "metadata_element_list": [{"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ID", "name": "Hybris Item ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ID", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT TAG NAME", "name": "Hybris Assignment Label", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Assignment Label", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_TAG_NAME", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ATTRIBUTE NAME", "name": "Hybris Attribute Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Attribute Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ATTRIBUTE_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT CATALOG NAME", "name": "Hybris Catalog Mnemonic", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Catalog Mnemonic", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_CATALOG_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT PK", "name": "Hybris Item PK", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item PK", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_PK", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.SYSTEM ID", "name": "Hybris System ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris System ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "SYSTEM_ID", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.ASSIGNED", "name": "Assigned", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Assigned", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "ASSIGNED", "column_name": "ASSIGNED", "data_length": 38, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PIM TYPE", "name": "PIM Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "PIM Type", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_PIM_TYPE", "column_name": "PIM_TYPE", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS VIDEO", "name": "Media Analysis Video", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1003, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "name": "Labels", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 113, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.ID", "name": "Label Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Label Id", "values": [{"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 1}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 2}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 3}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "ID", "data_length": 40, "description": "Label Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.NAME", "name": "Label Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "text"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Label Name", "values": [{"value": {"type": "string", "value": "text"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "logo"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "food"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "dessert"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "NAME", "data_length": 40, "description": "Label Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.APPEARANCES", "name": "Label Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:03\\",\\"endTime\\":\\"0:00:03.04\\"},{\\"startTime\\":\\"0:00:07\\",\\"endTime\\":\\"0:00:08.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Label Appearances", "values": [{"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:03\\",\\"endTime\\":\\"0:00:03.04\\"},{\\"startTime\\":\\"0:00:07\\",\\"endTime\\":\\"0:00:08.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:07\\",\\"endTime\\":\\"0:00:08.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:04\\",\\"endTime\\":\\"0:00:04.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:04\\",\\"endTime\\":\\"0:00:04.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "APPEARANCES", "data_length": 0, "description": "Label Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "name": "Sentiments", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 114, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.ID", "name": "Sentiment Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "ID", "data_length": 40, "description": "Sentiment Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.NAME", "name": "Sentiment Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "NAME", "data_length": 40, "description": "Sentiment Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.APPEARANCES", "name": "Sentiment Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "APPEARANCES", "data_length": 0, "description": "Sentiment Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.SEEN.DURATION.RATIO", "name": "Sentiment Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Sentiment Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "name": "Keywords", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 115, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.ID", "name": "Keyword Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Keyword Id", "values": [{"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "ID", "data_length": 40, "description": "Keyword Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.NAME", "name": "Keyword Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "kinder"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Keyword Name", "values": [{"value": {"type": "string", "value": "kinder"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "NAME", "data_length": 40, "description": "Keyword Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.APPEARANCES", "name": "Keyword Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:05\\",\\"endTime\\":\\"0:00:08.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Keyword Appearances", "values": [{"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:05\\",\\"endTime\\":\\"0:00:08.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Keyword Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "name": "Faces", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 111, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.ID", "name": "Face Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "ID", "data_length": 40, "description": "Face Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.NAME", "name": "Face Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "NAME", "data_length": 40, "description": "Face Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.TITLE", "name": "Face Title", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Title", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "TITLE", "data_length": 249, "description": "Face Title", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.DESCRIPTION", "name": "Face Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Face Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.APPEARANCES", "name": "Face Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "APPEARANCES", "data_length": 0, "description": "Face Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SPEAKER.FACE.ID", "name": "Video Speaker Object Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Speaker Object Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "THUMBNAIL_OBJECT_ID", "data_length": 40, "description": "Video Speaker Object Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.SEEN.DURATION.RATIO", "name": "Face Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "SEEN_DURATION_RATIO", "data_length": 20, "description": "Face Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "name": "Brands", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 112, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.ID", "name": "Video Brand Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "ID", "data_length": 40, "description": "Brand Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.NAME", "name": "Video Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Brand Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.DESCRIPTION", "name": "Video Brand Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Brand Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.WIKIURL", "name": "Video Brand Wiki URL", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Wiki URL", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "WIKIURL", "data_length": 200, "description": "Brand Wiki URL", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.APPEARANCES", "name": "Video Brand Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Brand Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.SEEN.DURATION.RATIO", "name": "Video Brand Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Brand Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "name": "Speeches", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 116, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.ID", "name": "SpeechText Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "SpeechText Id", "values": [{"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 1}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 2}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 3}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 4}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 5}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 6}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 7}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 8}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 9}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 10}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 11}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 12}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "ID", "data_length": 40, "description": "SpeechText Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXT", "name": "Speech Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "ENJOY A CREAMY"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Speech Text", "values": [{"value": {"type": "string", "value": "ENJOY A CREAMY"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AND EXPLOSIVE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "TASTE EXPERIENCE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "WITH THE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "NEW SPOON"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "Kinder"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "PAPER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "a little,"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "A LITTLE GESTURE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "MEANS A LOT"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "SCOPRI DI PIÙ"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "KINDER.COM"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "a little, a Lot"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXT", "data_length": 1000, "description": "Speech Text", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXTTYPE", "name": "Speech Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "OCR"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Speech Type", "values": [{"value": {"type": "string", "value": "OCR"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "OCR"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "OCR"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "OCR"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "OCR"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "OCR"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "OCR"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "OCR"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "OCR"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "OCR"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "OCR"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "OCR"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "OCR"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXTTYPE", "data_length": 40, "description": "Speech Type", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.START TIME", "name": "Speech Start Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "0:00:01"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Speech Start Time", "values": [{"value": {"type": "string", "value": "0:00:01"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:03"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:03"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:05"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:06"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:07"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:07"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:07"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:07"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:07"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:08"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "START_TIME", "data_length": 40, "description": "Speech Start Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.END TIME", "name": "Speech End Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "0:00:02.04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Speech End Time", "values": [{"value": {"type": "string", "value": "0:00:02.04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:03.04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:03.04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:04.04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:04.04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:08.04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:06.04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:07.04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:08.04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:08.04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:08.04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:08.04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "0:00:08.04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "END_TIME", "data_length": 40, "description": "Speech End Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "name": "Speakers", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 122, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.ID", "name": "Speaker Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "ID", "data_length": 40, "description": "Speaker Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.NAME", "name": "Speaker Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "NAME", "data_length": 100, "description": "Speaker Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.APPEARANCES", "name": "Speaker Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "APPEARANCES", "data_length": 0, "description": "Speaker Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.FIELDGROUP.LOCALASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200057, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1239, "metadata_element_list": [{"id": "FERRERO.FIELD.COUNTRY", "name": "LOCAL COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "LOCAL COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USER", "name": "USER", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "USER", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_USER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.ASSOCIATION", "name": "TYPE OF ASSOCIATION", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "TYPE OF ASSOCIATION", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_ASSOCIATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.VALUE", "name": "VALUE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "VALUE", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_VALUE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "CG.CATEGORY.FADEL ASSET INFORMATION", "name": "Rights Asset Information", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200064, "metadata_element_list": [{"id": "CG.FIELD.RIGHTS MANAGED", "name": "Fadel IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fadel IP Rights", "enabled": true, "options": "", "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_RIGHTS_MANAGED_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGED", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.NEEDS RIGHTS MANAGEMENT", "name": "Needs Rights Management", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "10", "field_value": {"type": "string", "value": "N"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Needs Rights Management", "enabled": true, "options": "", "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_NEEDS_RIGHTS_MANAGEMENT_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "NEEDS_RIGHTS_MANAGEMENT", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.RIGHTS MANAGEMENT DESCRIPTION", "name": "Rights Management Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Rights Management Description", "enabled": true, "options": "", "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGEMENT_DESCRIPTION", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.RIGHTS MANAGEMENT STATUS", "name": "Rights Management Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Rights Management Status", "enabled": true, "options": "", "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_RIGHTS_MANAGEMENT_STATUS_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGEMENT_STATUS", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.FORCE SYNC", "name": "Force Sync", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Force Sync", "enabled": true, "options": "", "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_FORCE_SYNC_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "FORCE_SYNC", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.LAST SYNC TIME", "name": "Date of last data sync", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date of last data sync", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "LAST_SYNC_TIME", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "CG.CATEGORY.FADEL RIGHTS INFORMATION", "name": "Rights Information", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200065, "metadata_element_list": [{"id": "CG.TABLE.RIGHTS", "name": "Rights", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1256, "metadata_element_list": [{"id": "CG.FIELD.RIGHT TERRITORIES", "name": "Territory", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Territory", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "TERRITORY", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT USES", "name": "Use", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Use", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "USAGE", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT IN DATE", "name": "In Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "In Date", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "IN_DATE", "data_length": 10, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT OUT DATE", "name": "Out Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Out Date", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "OUT_DATE", "data_length": 10, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "saved_values_behavior_mode": 0}]}]}, {"id": "CG.CATEGORY.FADEL AGREEMENTS AND PARTIES", "name": "Agreements and Parties", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200067, "metadata_element_list": [{"id": "CG.TABLE.PARTIES.AGREEMENTS VW", "name": "Customized Table Parties and Agreements", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1258, "metadata_element_list": [{"id": "CG.FIELD.AGREEMENT NUMBER VW", "name": "Agreement Number ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Number ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_NUMBER", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT DESCRIPTION VW", "name": "Agreement Description ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Description ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_DESCRIPTION", "data_length": 2000, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT START DATE VW", "name": "Agreement Start Date ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Start Date ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_START_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT END DATE VW", "name": "Agreement End Date ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement End Date ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_END_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY NAME VW", "name": "Party Name ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Name ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_NAME", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY ROLE VW", "name": "Party Role ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Role ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_ROLE", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY EMAIL ADDRESS VW", "name": "Party Email Address ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Email Address ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_EMAIL_ADDRESS", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY PHONE NUMBER VW", "name": "Party Phone Number ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Phone Number ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_PHONE_NUMBER", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PRIMARY PARTY CONTACT VW", "name": "Primary Party Contact ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Primary Party Contact ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PRIMARY_PARTY_CONTACT", "data_length": 200, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 8, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "ARTESIA.CATEGORY.VIDEO ATTRIBUTES", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 0, "metadata_element_list": [{"id": "ARTESIA.FIELD.VIDEO.FRAMERATE", "name": "Framerate", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 25.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Framerate", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": false, "data_type": "NUMBER", "facetable": false, "searchable": false, "table_name": "VIDEO_PARENT_ASSETS", "column_name": "FRAMERATE", "data_length": 0, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.VIDEO.START SMPTE", "name": "Start Time SMPTE", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00:00:00:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Start Time SMPTE", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "VIDEO_ASSETS", "column_name": "START_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.END SMPTE", "name": "End Time SMPTE", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00:00:08:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "End Time SMPTE", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "VIDEO_ASSETS", "column_name": "END_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.START MSEC", "name": "Start Time MSEC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Start Time MSEC", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": false, "data_type": "NUMBER", "facetable": false, "searchable": false, "table_name": "VIDEO_ASSETS", "column_name": "START_MSEC", "data_length": 0, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.VIDEO.END MSEC", "name": "End Time MSEC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 8040}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "End Time MSEC", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": false, "data_type": "NUMBER", "facetable": false, "searchable": false, "table_name": "VIDEO_ASSETS", "column_name": "END_MSEC", "data_length": 0, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.VIDEO.CLIP PARENT ID", "name": "Clip Parent Id", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Clip Parent Id", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": false, "data_type": "CHAR", "facetable": false, "searchable": false, "table_name": "VIDEO_ASSETS", "column_name": "PARENT_UOI_ID", "data_length": 40, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.VIDEO.LOW RES MIME TYPE", "name": "Low Resolution Mimetype", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "video/mp4"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Low Resolution Mimetype", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": false, "data_type": "CHAR", "facetable": false, "searchable": false, "table_name": "VIDEO_URLS", "column_name": "LO_RES_MIME_TYPE", "data_length": 80, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.VIDEO.VIDEO REFERENCE", "name": "Video Reference", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 36299}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Reference", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": false, "data_type": "NUMBER", "facetable": false, "searchable": false, "table_name": "VIDEO_ASSETS", "column_name": "VIDEO_REFERENCE", "data_length": 0, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.VIDEO.DURATION MSEC", "name": "Duration MSEC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 8040}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Duration MSEC", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": false, "data_type": "NUMBER", "facetable": false, "searchable": false, "table_name": "VIDEO_ASSETS", "column_name": "DURATION_MSEC", "data_length": 0, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.VIDEO.DURATION SMPTE", "name": "Duration SMPTE", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00:00:08:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Duration SMPTE", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": false, "data_type": "CHAR", "facetable": false, "searchable": false, "table_name": "VIDEO_ASSETS", "column_name": "DURATION_SMPTE", "data_length": 11, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.VIDEO.CLIP PARENT START SMPTE", "name": "Clip Parent Start Time SMPTE", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Clip Parent Start Time SMPTE", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "VIDEO_ASSETS", "column_name": "PARENT_START_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}], "has_multilingual_fields": false}, "mime_type": "video/mp4", "path_list": [{"parents": [{"id": "90962e8228075df2ada17d7fb668aaca95c87092", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "90962e8228075df2ada17d7fb668aaca95c87092", "sequence_number": 0}, {"id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "name": "MASTER FOR FER ROCH", "container_state": "NORMAL", "original_uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "sequence_number": 0}, {"id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "name": "01. DE - Rocher ", "container_state": "NORMAL", "original_uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "sequence_number": 0}, {"id": "091216b59cad7f1ea815164c26db27e350c54023", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "sequence_number": 0}, {"id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "name": "01. Rocher", "container_state": "NORMAL", "original_uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "sequence_number": 0}, {"id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "name": "01. Ferrero Rocher", "container_state": "NORMAL", "original_uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "sequence_number": 0}, {"id": "93b0968611de11160ed068afeb9930b9965bd5ff", "name": "03. Premium Chocolate", "container_state": "NORMAL", "original_uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "sequence_number": 0}], "complete": true, "sequence_number": 1, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "90962e8228075df2ada17d7fb668aaca95c87092", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "90962e8228075df2ada17d7fb668aaca95c87092", "sequence_number": 0}, {"id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "name": "MASTER FOR FER ROCH", "container_state": "NORMAL", "original_uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "sequence_number": 0}, {"id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "name": "01. DE - Rocher ", "container_state": "NORMAL", "original_uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "sequence_number": 0}, {"id": "bfbc248a12a4bf0382406620f0d9ec41ff42e35e", "name": "01. Ferrero Rocher", "container_state": "NORMAL", "original_uoi_id": "bfbc248a12a4bf0382406620f0d9ec41ff42e35e", "sequence_number": 0}, {"id": "3d7debea6815ae46c9598191b1c645007666292a", "name": "03 . Premium Chocolate", "container_state": "NORMAL", "original_uoi_id": "3d7debea6815ae46c9598191b1c645007666292a", "sequence_number": 0}, {"id": "c0bb10be2b8f96ee4d27a2dfb7e0d03de68cf114", "name": "DE", "container_state": "NORMAL", "original_uoi_id": "c0bb10be2b8f96ee4d27a2dfb7e0d03de68cf114", "sequence_number": 0}, {"id": "b124e1ed196028bdd0e2c093e28078ca8d9ad462", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "b124e1ed196028bdd0e2c093e28078ca8d9ad462", "sequence_number": 0}, {"id": "68ce80e8c8a30badb82dabfd823886a6fa6fe309", "name": "Y - Geography", "container_state": "NORMAL", "original_uoi_id": "68ce80e8c8a30badb82dabfd823886a6fa6fe309", "sequence_number": 0}], "complete": true, "sequence_number": 1, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}], "creator_id": "1003", "asset_state": "NORMAL", "checked_out": false, "folder_path": "", "content_size": 2508962, "content_type": "VIDEO", "content_state": "NORMAL", "date_imported": "2026-01-09T16:31:22.76+01:00", "import_job_id": 224850, "streaming_url": "https://ppr.dam.ferrero.com/video/data/repository/original/vol0/227/47caa29127ffbd555f34762b1803863ca821015c_proxy.mp4", "subscribed_to": false, "collection_ids": [], "latest_version": true, "legacy_model_id": 116, "content_editable": true, "content_sub_type": "WHOLE", "import_user_name": "bizAdmin", "date_last_updated": "2026-01-09T16:34:31.08+01:00", "metadata_model_id": "ECOMMERCE", "original_asset_id": "ccc426749470e3d170bb5101f9f3e049fe26a8ef", "rendition_content": {"preview_content": {"id": "49159e38cf795269ca82fbc758f1edf38e0f13d4", "url": "/otmmapi/v6/renditions/49159e38cf795269ca82fbc758f1edf38e0f13d4", "name": "kinder-joy_video.mp4", "width": 640, "height": 360, "mime_type": "video/mp4", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "PREVIEW", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\227\\\\47caa29127ffbd555f34762b1803863ca821015c_proxy.mp4", "content_size": 853342, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "thumbnail_content": {"id": "fdfc2bf534cc141c4177067c200504956f9e8e10", "url": "/otmmapi/v6/renditions/fdfc2bf534cc141c4177067c200504956f9e8e10", "name": "fdfc2bf534cc141c4177067c200504956f9e8e10.jpg", "width": 500, "height": 282, "mime_type": "image/jpeg", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "THUMBNAIL", "content_path": "data\\\\repository\\\\thumb\\\\vol0\\\\201\\\\fdfc2bf534cc141c4177067c200504956f9e8e10_fdfc2bf534cc141c4177067c200504956f9e8e10.jpg", "content_size": 1100, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "video_rollover_content": {"id": "83239e21cd05656cbf2f8cd6f8153081f5ab8577", "url": "/otmmapi/v6/renditions/83239e21cd05656cbf2f8cd6f8153081f5ab8577", "name": "kinder-joy_video.GIF", "width": 500, "height": 282, "mime_type": "image/gif", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "ROLLOVER", "content_path": "data\\\\repository\\\\rollover\\\\vol0\\\\16\\\\83239e21cd05656cbf2f8cd6f8153081f5ab8577_rollover.gif", "content_size": 1887884, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_content_info": {"master_content": {"id": "3bc5a6ec31d05c2bb1a718e930dba8640b01dbf1", "url": "/otmmapi/v6/renditions/3bc5a6ec31d05c2bb1a718e930dba8640b01dbf1", "name": "kinder-joy_video.mp4", "width": -1, "height": -1, "mime_type": "video/mp4", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\227\\\\kinder-joy_video_3bc5a6ec31d05c2bb1a718e930dba8640b01dbf1.mp4", "content_size": 2508962, "unit_of_size": "BYTES", "content_checksum": "1d349f7b07432814a80815376ff908d9", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "supporting_content": [{"id": "47caa29127ffbd555f34762b1803863ca821015c", "url": "/otmmapi/v6/renditions/47caa29127ffbd555f34762b1803863ca821015c", "name": "kinder-joy_video.mp4", "width": 640, "height": 360, "mime_type": "video/mp4", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "SUPPORTING", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\227\\\\47caa29127ffbd555f34762b1803863ca821015c_proxy.mp4", "content_size": 853342, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}]}, "asset_state_user_id": "1003", "master_content_info": {"id": "3bc5a6ec31d05c2bb1a718e930dba8640b01dbf1", "url": "/otmmapi/v6/renditions/3bc5a6ec31d05c2bb1a718e930dba8640b01dbf1", "name": "kinder-joy_video.mp4", "width": -1, "height": -1, "mime_type": "video/mp4", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\227\\\\kinder-joy_video_3bc5a6ec31d05c2bb1a718e930dba8640b01dbf1.mp4", "content_size": 2508962, "unit_of_size": "BYTES", "content_checksum": "1d349f7b07432814a80815376ff908d9", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "delivery_service_url": "https://ppr.dam.ferrero.com/adaptivemedia/rendition?id=ccc426749470e3d170bb5101f9f3e049fe26a8ef", "product_associations": false, "security_policy_list": [{"id": 5467, "name": "Marketing Viewer", "status": "NORMAL", "created_by": "1003", "create_date": "2023-10-06T16:52:07.297+02:00", "description": "Marketing Viewer", "ownership_type": "PUBLIC"}], "thumbnail_content_id": "fdfc2bf534cc141c4177067c200504956f9e8e10", "content_state_user_id": "1003", "content_state_user_name": "OTMM BusinessAdmin", "asset_lock_state_user_id": "1003", "metadata_state_user_name": "OTMM BusinessAdmin", "progressive_download_url": "https://ppr.dam.ferrero.com/video/data/repository/original/vol0/227/47caa29127ffbd555f34762b1803863ca821015c_proxy.mp4", "access_control_descriptor": {"permissions_map": {"entry": [{"key": "text.securityPolicy.permission.Custom04Permission", "value": true}, {"key": "text.securityPolicy.permission.ContentEditPermission", "value": true}, {"key": "text.securityPolicy.permission.AssetViewPermission", "value": true}, {"key": "text.securityPolicy.permission.ProjectViewPermission", "value": true}, {"key": "text.securityPolicy.permission.MembershipEditPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom03Permission", "value": true}, {"key": "text.securityPolicy.permission.MetaDataEditPermission", "value": true}, {"key": "text.securityPolicy.permission.EditParentsPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom02Permission", "value": true}, {"key": "text.securityPolicy.permission.ExportPermission", "value": true}, {"key": "text.securityPolicy.permission.SummaryViewPermission", "value": true}, {"key": "text.securityPolicy.permission.PreviewViewPermission", "value": true}, {"key": "text.securityPolicy.permission.SubscribePermission", "value": true}, {"key": "text.securityPolicy.permission.DeleteAssetPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom01Permission", "value": true}]}}, "content_lock_state_user_id": "1003", "asset_state_last_update_date": "2026-01-09T16:34:31.08+01:00", "content_lock_state_user_name": "bizAdmin", "metadata_lock_state_user_name": "bizAdmin", "content_state_last_update_date": "2026-01-09T16:31:23.093+01:00", "inherited_metadata_collections": [{"container_id": "90962e8228075df2ada17d7fb668aaca95c87092", "container_name": "05. Final Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "90962e8228075df2ada17d7fb668aaca95c87092", "originator_id": "90962e8228075df2ada17d7fb668aaca95c87092", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "05. Final Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "container_name": "MASTER FOR FER ROCH", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "MASTER FOR FER ROCH"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000779"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "MASTER_FOR_FER_ROCH_CQ_LG_DE_PRE_0000779"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local comm on global brands"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Master Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Master Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2026/2027"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "B1"}, "display_value": "Master campaign ready for re-mastering", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ADDITIONALAPPROVER", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.LICENSING", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "d0ef653291e269a7d1ddf0ebfedd1c6ad70b1c59"}, "metadata_element": {"id": "FERRERO.FIELD.LICENSING", "name": "Campaign License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "LICENSING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}}]}, {"container_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "container_name": "01. DE - Rocher ", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "bb01cf85444107f22341d2b88421f0cbaade0bf9"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E006"}, "display_value": "GERMANY", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Local DE Editable Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Premium Chocolate Local DE Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "8f497ce53d23899c7c09aa5a7ca69c9f55c3a62d"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E64"}, "display_value": "GERMANY", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "ca70a6d55e4277ecbef2a01a593c614501cbcf74"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "3e9d669ab1047383d0416ba40af75744148c94c8"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0e241fc386dcd91baa31a409e297169fe4a352c2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "2e3e0f2be0e487b540d9b63cb8c0e9ed9c6b1bb6"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "359c98154f230a60acc6b4eb048e129411d7a778"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "b3698893fc223e8371f4e4c0d560d0536c724a09"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "e92f9f10c0c29dda8261218c2c72a0baa66472f2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "15dff42c3b196ba3ae5b3c2ea33f00e347e6f654"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Extended Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0ae044cd9dddf86cd9406c9edc3996b18c430be0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "name": "AMMC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AMMC", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LOCAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "7806fed6127b50c21f6b03e1f7b63f3dedc1e8d1"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "RMMC", "values": [{"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "4c8a2d6e178638bfacfeaf3f7f6f1000304693a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "name": "Product Asset Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Product Asset Approval Ferrero Rocher Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Asset Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCT_ASSET_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local comm on global brands"}, "display_value": "Local comm on global brands", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "5a1ae26558efdc03336c0df838dd9e7c2a51c687"}, "metadata_element": {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "name": "Market Unit", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market Unit", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETUNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "MARKET_UNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "091216b59cad7f1ea815164c26db27e350c54023", "container_name": "EU", "container_type_id": "GEOGRAPHYLOCAL", "container_type_name": "L4 - GEOGRAPHY LOCAL", "inherited_metadata_values": [{"id": "FERRERO.MARKET.FOLDER.GLOBAL", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "4c4d4bf36bf8b1ace55f990e78d6332a9cb20990"}, "metadata_element": {"id": "FERRERO.MARKET.FOLDER.GLOBAL", "name": "Global/Local (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "LOCAL"}, "display_value": "Local", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local (Marketing)", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "GLOBALLOCAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_AREA", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "3dc200c993ab8263952dc6da1498026f615f45dd"}, "metadata_element": {"id": "MARKETING_AREA", "name": "AREA", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E010"}, "display_value": "EUROPE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "AREA", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "AREA", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "AREA", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "dc7749c3e113ec9e0b9e9a3840ea55673ca5e49f"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "f2d658a3829c2ea158ae70a4b4e7928bcf88f8e2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "972d0258a82de85672bd84d8af68cdb67ad3d3ca"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "1212505ad3fe4c9d7458568f3d95aeb4c4e5c37e"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "9d1dfdef55ff7a3eb03552988ddf729c7a0f5107"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "54f006eeb366121a29ee98da33d437615dcd34e0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "1fd8802010e30d44cebb2f3eb090b12ac550f97d"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "8b6e1d8f7dc3c4671cfc11a2914d838ca3ee3f3b"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "be0dc9a87262ee7fd165237b531ba3b7aa93a260"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "2f99f0f0f9e43fb34df9222c8b73a86fb78e473e"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "container_name": "01. Rocher", "container_type_id": "GLOBALBRAND", "container_type_name": "L3 - BRAND", "inherited_metadata_values": [{"id": "FERRERO.TABULAR.NEW.BRAND", "tabular": true, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "9bb1c183135f5240f09132aef59c4ea48c762381"}, "metadata_element": {"id": "FERRERO.TABULAR.NEW.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF04"}, "display_value": "ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND (Marketing)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF04"}, "display_value": "ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "BRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TABULAR_BRAND", "column_name": "BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.NEW.BRAND", "parent_table_name": "BRAND (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "tabular": true, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "a37b13c02cba799378211e17b73234a0d836f9b6"}, "metadata_element": {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "CQ"}, "display_value": "FERRERO ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND(HARMONIZED)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "CQ"}, "display_value": "FERRERO ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.HARMONIZEDBRAND", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_HARMONIZEDBRAND", "column_name": "HARMONIZEDBRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.HARMONIZEDBRAND", "parent_table_name": "BRAND(HARMONIZED)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "AGENCY.COLLABORATION", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "183d6e0957a9940f9b18ef44f46d957802b63397"}, "metadata_element": {"id": "AGENCY.COLLABORATION", "name": "Agency collaboration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency collaboration", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "AGENCY_COLLABORATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "AGENCY.SHARING", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "d0e2b725ddfdc452cc3ba750bbe8ec059c6b01ba"}, "metadata_element": {"id": "AGENCY.SHARING", "name": "Agency sharing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency sharing", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "AGENCY_SHARING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "CONTENT.SCALING.AGENCYNAME", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "f9dfa695cc5ef8cd3fafada4e44cfdaa1522d58a"}, "metadata_element": {"id": "CONTENT.SCALING.AGENCYNAME", "name": "Content Scaling agency name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Scaling agency name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENTSCALING_AGENCYNAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "container_name": "01. Ferrero Rocher", "container_type_id": "GLOBALSUBCATEGORY", "container_type_name": "L2 - SUBCATEGORY", "inherited_metadata_values": [{"id": "MARKETING_SUBCATEGORY", "tabular": false, "value_id": {"uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "originator_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "inherited_field_id": "3000ad591e09b5c75f85fc2ccbb9ebeb31b3ab78"}, "metadata_element": {"id": "MARKETING_SUBCATEGORY", "name": "SUBCATEGORY", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Mart-Ferrero-Rocher"}, "display_value": "Ferrero Rocher", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "SUBCATEGORY", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "SUBCATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "SUBCATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "tabular": true, "value_id": {"uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "originator_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "inherited_field_id": "2c751ce760d88c0e271925ea5149348106944bfa"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Subcategory Owner", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_SUBCATEGORY_OWNER_TM", "column_name": "SUBCATEGORY_OWNER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "parent_table_name": "Subcategory Owner", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "container_name": "03. Premium Chocolate", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "originator_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E06"}, "display_value": "PREMIUM CHOCOLATE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "originator_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final Approver BPS ", "values": [{"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}], "asset_lock_state_last_update_date": "2026-01-09T16:34:31.167+01:00", "content_lock_state_last_update_date": "2026-01-09T16:31:23.207+01:00"} \N \N active f \N \N 2026-01-16 20:54:16.852162 2026-01-16 20:54:16.852162 2026-01-16 20:54:16.852162 18 M5c8AY 312c9df00dc06d468e30794a7918992bcda8d0c3 kinder-joy_videoE2E .mp4 \N video/mp4 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 90962e8228075df2ada17d7fb668aaca95c87092 Box File ID: 2105223083736\nBox URL: https://app.box.com/file/2105223083736\nDAM Asset ID: 312c9df00dc06d468e30794a7918992bcda8d0c3 {"name": "kinder-joy_videoE2E.mp4", "links": {"links": [], "source_id": "312c9df00dc06d468e30794a7918992bcda8d0c3"}, "locked": false, "deleted": false, "expired": false, "version": 1, "asset_id": "312c9df00dc06d468e30794a7918992bcda8d0c3", "metadata": {"id": "ECOMMERCE", "name": "Marketing Asset", "type": "com.artesia.metadata.MetadataModel", "legacy_id": 116, "metadata_element_list": [{"id": "FERRERO.CATEGORY.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200054, "metadata_element_list": [{"id": "FERRERO.FIELD.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Status", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.CONTENT_STATUS", "edit_type": "COMBO_NOTNULL", "facetable": false, "searchable": true, "table_name": "FERRERO_CONTENT_STATUS_MD", "column_name": "CONTENT_STATUS", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9215, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRER.CATEGORY.ASSET_INFO", "name": "Asset Info", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200022, "metadata_element_list": [{"id": "FERRERO.FIELD.MKTG.ASSET TYPE", "name": "Asset Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "brandbook"}, "display_value": "Brand Book", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.ASSETTYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.FISCAL YEAR", "name": "Release Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2028/2029"}, "display_value": "2028/2029", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Release Fiscal Year", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_DOMAIN_FISCAL_YEAR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "FISCAL__YEAR", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "name": "Main Languages", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1210, "metadata_element_list": [{"id": "MAIN_LANGUAGES", "name": "MAIN LANGUAGES", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "MAIN LANGUAGES", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MAIN LAGUAGES_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MAIN_LANGUAGE_TABLE", "column_name": "MAIN_LANGUAGE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "parent_table_name": "Main Languages", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.ASSET DESCRIPTION", "name": "Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Description", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "DESCR", "data_length": 249, "description": "Descriptive information", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.FLAVOUR", "name": "Flavour", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Flavour", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.FLAVOUR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FLAVOUR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.SIZE", "name": "Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Size", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.SIZE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SIZE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1241, "metadata_element_list": [{"id": "FERRERO.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Compliance", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ASSETCOMPLIANCE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_COMPLIANCE", "column_name": "ASSET_COMPLIANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "parent_table_name": "Asset Compliance", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.TAG DETAILS", "name": "Tag Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 118, "metadata_element_list": [{"id": "ARTESIA.FIELD.TAG", "name": "Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Tag", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.TAGS", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "OTMM_TAGS", "column_name": "TAG", "data_length": 80, "description": "Tag", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG CONFIDENCE", "name": "Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Confidence", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG TYPE", "name": "Tag Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Tag Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "TAG_TYPE", "data_length": 10, "description": "Tag Type", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED BY", "name": "Associated By", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Associated By", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_BY", "data_length": 10, "description": "Associated By", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED DATE", "name": "Associated Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Associated Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_DATE", "data_length": 10, "description": "Associated Date", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.STATE", "name": "Global/Local", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "GLOBAL"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO_NOTNULL", "facetable": true, "searchable": true, "table_name": "FERRERO_IC_ASSET_DETAILS", "column_name": "ASSET_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.ASPECT RATIO", "name": "Aspect Ratio (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio (Marketing)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASPECT_RATIO", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASPECT_RATIO", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "name": "Tag (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1222, "metadata_element_list": [{"id": "MARKETING_TAG", "name": "Marketing Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Marketing Tag", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.DOMAIN.TAG", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TAG_MARKET", "column_name": "TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "parent_table_name": "Tag (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.TAGS", "name": "Auto-Generated Tags", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Auto-Generated Tags", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "AUTO_GENERATED_TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CERTIFIER", "name": "Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approver", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.MARKETING.FIELD.APPROVAL DATE", "name": "Approval__Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approval__Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.LEGAL APPROVAL DATE", "name": "Legal Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CERTIFIER", "name": "IA&CC Certifier", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Certifier", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CC APPROVAL DATE", "name": "IA&CC Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "name": "Extended Approval", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1230, "metadata_element_list": [{"id": "FERRERO.FIELD.EXTENDED.APPROVAL", "name": "Extended Approval required by:", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended Approval required by:", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COMMENTS", "name": "Comment", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comment", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "COMMENTS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.DATE", "name": "Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USERS", "name": "User ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "User ID", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "USERS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXTENDED.JOBID", "name": "Extended JobID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended JobID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.MIGRATION.INDEX", "name": "Migration Index", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Migration Index", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MIGRATION.INDEX", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MIGRATION_INDEX", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "FERRERO_MARKET_MARKETING_CREATOR", "name": "Marketing Creator", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Marketing Creator", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.CREATOR", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MARKETING_CREATOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "ARTESIA.FIELD.IS LATEST VERSION", "name": "Is Latest Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Y"}, "display_value": "Yes", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Is Latest Version", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.YES_NO", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "IS_LATEST_VERSION", "data_length": 1, "description": "Is this the latest version? (Y/N)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET VERSION", "name": "Asset Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 1}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Version", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "INTEGER", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "VERSION", "data_length": 12, "description": "Version number of asset", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET_ID", "name": "Asset ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "312c9df00dc06d468e30794a7918992bcda8d0c3"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset ID", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "LOGICAL_UOI_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.ECOMMERCE STATUS", "name": "Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "PUBLISHED"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Status", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "ASSET_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CREATOR", "name": "Uploaded by", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Uploaded by", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_USER_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.FIELD.CREATION DATE", "name": "Upload Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-09T16:31:22.757+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Upload Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_DT", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.ASSET NAME", "name": "Asset Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "kinder-joy_videoE2E.mp4"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Name", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "description": "Original name of master object", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.CONTENT TYPE", "name": "Content Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "VIDEO"}, "display_value": "Video", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Type", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.CONTENT_TYPES", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "CONTENT_TYPE", "data_length": 8, "description": "Content Type", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.MIME TYPE", "name": "File Extension", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "video/mp4"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Extension", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_MIME_TYPE", "data_length": 80, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.FILE.SIZE", "name": "File Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "long", "value": 3080691}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Size", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "LONG", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_SIZE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP RESOLUTION", "name": "Bitmap Resolution", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Resolution", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_RESOLUTION", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP WIDTH", "name": "Bitmap Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Width", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_WIDTH", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP HEIGHT", "name": "Bitmap Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Height", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_HEIGHT", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "name": "Approval Metadata", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1249, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.DEPARTMENT", "name": "Department", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Department", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "DEPARTMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.CERTIFIER", "name": "Certifier", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Certifier", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL DATE", "name": "Approval Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Approval Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "APPROVAL_DATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.COMMENT", "name": "Comments", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comments", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "COMMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.TYPE OF APPROVAL", "name": "Type of Approval", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Approval", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "TYPE_OF_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL STATUS", "name": "Approval Status", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Approval Status", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "APPROVAL_STATUS", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.SUB JOBID", "name": "Sub Job Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sub Job Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.VIDEO.BIT_RATE", "name": "Bitrate", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 2487939.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitrate", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "BIT_RATE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.EMBEDDED.FIELD.DURATION", "name": "Duration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00:00:09:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Duration", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "DURATION_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.ASPECT RATIO", "name": "Aspect Ratio", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "1.778"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "ASPECT_RATIO", "data_length": 30, "displayable": false, "instructions": "ASPECT_RATIO", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME HEIGHT", "name": "Frame Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 1080}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Height", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_HEIGHT", "data_length": 12, "displayable": true, "instructions": "FRAME_HEIGHT", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME WIDTH", "name": "Frame Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 1920}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Width", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_WIDTH", "data_length": 12, "displayable": true, "instructions": "FRAME_WIDTH", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.ASPECT.RATIO.POC", "name": "Aspect Ratio(POC)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "16:9"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio(POC)", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASPECT_RATIO_TABLE", "column_name": "ASPECT_RATIO", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "PRODUCT.DETAILS", "name": "Product Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200029, "metadata_element_list": [{"id": "FERRERO.TABLE.EANCODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1208, "metadata_element_list": [{"id": "EAN_CODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "EAN CODE/ 77 CODE", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "EAN.CODE", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "EAN_CODE", "column_name": "EAN_CODE_DESCRIPTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "COUNTRY", "name": "COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "EAN_CODE", "column_name": "COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKETING.ADVANCE.PRODUCT.LINK", "name": "Asset-to-product relation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset-to-product relation", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_MARKETING_ADVANCE_PRODUCT_LINK", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ADVANCE_PRODUCT_LINK", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 10182, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.SUB BRAND", "name": "Sub-Brands", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Sub-Brands", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.SUBBRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "SUB_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT WEIGHT", "name": "Product Weight", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Weight", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_WEIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.CONSUMER UNIT PACKAGING", "name": "Consumer Unit Packaging", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Consumer Unit Packaging", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PACK", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "CONSUMER_UNIT_PACKAGING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.4 DIGIT CODE", "name": "4 Digit Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "4 Digit Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "DIGITCODE", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERREO.ECOM.RETAILER_SPECIFIC_FIELD", "name": "Retailer Specific", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Retailer Specific", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "RETAILER_SPECIFIC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "cascading_group_id": "FERRERO.RETAILER.SPECIFIC", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY START PERIOD", "name": "Asset validity start period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-11T00:00:00+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity start period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_STARTING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY END PERIOD", "name": "Asset validity end period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-03-31T00:00:00+02:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity end period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_ENDING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.ASSET.NAMING.CONVENTION", "name": "Does asset need GS1 naming convention", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Does asset need GS1 naming convention", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASSETNAMINGCONVENTION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_NAMING_CONVENTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9515, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT VIEW", "name": "Product View", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product View", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT VIEW", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_VIEW", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT ANGLE", "name": "Product Angle", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Angle", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT.ANGLE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_ANGLE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT STATE", "name": "Product State", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product State", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT STATE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PROMOTION ID", "name": "Promo ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Promo ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROMO_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.BUSINESS.ASSET TYPE", "name": "Asset Type (eDAM)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Type (eDAM)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "OTMM.DOMAIN.OTMM_ASSETTYPE_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_BUSINESS_INFO", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7244, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200048, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.AGENCY NAME", "name": "Agency Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency Name", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.AGENCY_NAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AGENCY_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7336, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.CREATIX", "name": "CreativeX", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200059, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.CREATIVEX", "name": "Confidence", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1245, "metadata_element_list": [{"id": "FERRERO.TAB.FIELD.CREATIVEX", "name": "Platform > Rating (%)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Platform > Rating (%)", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_CREATIVEX", "column_name": "CREATIVEX_NEW", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CREATIVEX", "parent_table_name": "Confidence", "cascading_group_id": "FERRERO.CREATIVEX.CHAR", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.CREATIVEX LINK", "name": "CreativeX Hyperlink", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "CreativeX Hyperlink", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_CREATIVEX", "column_name": "CREATIVE_LINK", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.IP_RIGHTS", "name": "IP Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200046, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.IPRIGHT", "name": "IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IP Rights", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.IPRIGHTS", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IP_RIGHTS", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.BUYOUT", "name": "Touchpoint Scope", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Touchpoint Scope", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.TOTAL_BUYOUT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TOTAL_BUYOUT", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.FERRERO PROPERTY", "name": "Ferrero Property", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Ferrero Property", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.FERRERO_PROPERTY", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FERRERO_PROPERTY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200035, "metadata_element_list": [{"id": "FERRERO.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1209, "metadata_element_list": [{"id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "name": "IP Coverage, Area, Region & Market Unit", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Coverage, Area, Region & Market Unit", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "IPCOVERAGE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "cascading_group_id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHT TYPE", "name": "Copyright Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHT_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.MEDIATYPE", "name": "Media Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Media Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MEDIA_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "MEDIA_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE FROM", "name": "Expiration of Usage - From", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - From", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_FROM", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE TO", "name": "Expiration of Usage - To", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - To", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_TO", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO._DURATION", "name": "IP Duration", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Duration", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "ECOM_DURATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHTTYPE DETAILS", "name": "Copyright Type Details", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type Details", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHTTYPE_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 6, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.MARKET.VID_STAT_RIGHT", "name": "Video & Static Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200047, "metadata_element_list": [{"id": "FERRERO.MARKET.VID_N_STAT", "name": "Video and Static Right", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video and Static Right", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VID_AND_STAT_RIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.VID_STAT_TYPE", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1221, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.TYPE_VID", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Video & Static Right", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TYPE_VID_STAT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_MARKET_TYPE_VID_STAT", "column_name": "TYPE_OF_VIDEO_STATIC_RIGHT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.VID_STAT_TYPE", "parent_table_name": "Type of Video & Static Right", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKET.PROD_COMPANY", "name": "Production House", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Production House", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.PRODUCT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200050, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.LICENSIN", "name": "Licensing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Licensing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSING", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "cascading_group_id": "FERRERO.MARKET.CG.LICENSE", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.SPOT_DETAILS", "name": "Spot Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200049, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.SPOT_VERSION", "name": "Spot Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Version", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_VERSION", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_VERSION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.SPOT_TYPE", "name": "Spot Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_TYPE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.DIRECTOR_NAME", "name": "Director Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Director Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "DIRECTOR_NAME", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VIDEO_POST_PROD_COMPANY", "name": "Video Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VID_POST_PROD_CONTACT", "name": "Video Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_COMPANY", "name": "Audio Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_CONTACT", "name": "Audio Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.BROADCASTER.CODE", "name": "Broadcaster Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Broadcaster Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BROADCASTER_CODE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.TECHNICAL_VALIDATION", "name": "Technical Validation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Technical Validation", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TECHNICAL_VALIDATION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS", "name": "Media Analysis", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1002, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "name": "Categories", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 105, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY NAME", "name": "Category Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Category Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "NAME", "data_length": 100, "description": "Category Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY CONFIDENCE", "name": "Category Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Category Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "CONFIDENCE", "data_length": 10, "description": "Category Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES COUNT", "name": "Faces Count", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Faces Count", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACECOUNT", "column_name": "COUNT", "data_length": 10, "description": "Faces Count", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "name": "Face Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 106, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME", "name": "Recognized Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME", "data_length": 2000, "description": "Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME CONFIDENCE", "name": "Recognized Name Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME_CONFIDENCE", "data_length": 10, "description": "Name Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE", "name": "Person Age", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE", "data_length": 10, "description": "Person Age", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE CONFIDENCE", "name": "Person Age Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Person Age Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_CONFIDENCE", "data_length": 10, "description": "Person Age Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER", "name": "Gender", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Gender", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.GENDER", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER", "data_length": 40, "description": "Gender", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER CONFIDENCE", "name": "Gender Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Gender Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER_CONFIDENCE", "data_length": 10, "description": "Gender Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.FACE COORDS", "name": "Face Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "FACE_COORDS", "data_length": 200, "description": "Face Coordinates like postion, height,width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE GROUP", "name": "Person Age Group", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age Group", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.AGE GROUP", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_GROUP", "data_length": 10, "description": "Person Age Group", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "name": "Safe Content", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 107, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONTENT TYPE", "name": "Safe Content Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Safe Content Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENTS", "data_length": 20, "description": "Safe Content Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONFIDENCE", "name": "Content Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Content Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENT_CONFIDENCE", "data_length": 10, "description": "Safe Content Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "name": "Colors", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 108, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.NAME", "name": "Color", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Color", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "NAME", "data_length": 25, "description": "COLOR", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.PROPORTION", "name": "Color Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Color Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "PROPORTION", "data_length": 10, "description": "Proportion", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.FOREGROUND", "name": "Foreground Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Foreground Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "FOREGROUND", "data_length": 25, "description": "Foreground Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.BACKGROUND", "name": "Background Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Background Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "BACKGROUND", "data_length": 25, "description": "Background Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.ISBW", "name": "Is Black and White", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Is Black and White", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "ISBW", "data_length": 10, "description": "Is Black and White", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "name": "Captions", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 109, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION TEXT", "name": "Caption Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Caption Text", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "TEXT", "data_length": 2000, "description": "Caption Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION CONFIDENCE", "name": "Caption Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Caption Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "CAPTION_CONFIDENCE", "data_length": 10, "description": "Caption Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "name": "Image Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 110, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.IMAGE TYPE", "name": "Analysis Image Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Analysis Image Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_IMAGE_TYPE", "column_name": "TYPE", "data_length": 100, "description": "Image Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "parent_table_name": "Image Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.DATE", "name": "Date: Media Analysis", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-09T16:33:13+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date: Media Analysis", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MEDIA_ANALYSIS_DATE", "data_length": 25, "description": "Date Media Analysis was done on the asset.", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR LANGUAGE", "name": "Image Text Language", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Image Text Language", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "LANGUAGE", "data_length": 10, "description": "OCR data language", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR TEXT", "name": "Text on Image", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Text on Image", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "TEXT", "data_length": 4000, "description": "OCR Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "name": "Embedded Brand Info", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 119, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.NAME", "name": "Embedded Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Embedded Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Embedded Brand Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.CONFIDENCE", "name": "Embedded Brand Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Embedded Brand Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Embedded Brand Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.COORDINATES", "name": "Embedded Brand Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Embedded Brand Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "COORDINATES", "data_length": 200, "description": "Embedded Brand Coordinates like position, height, width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "HYBRIS.PRODUCT.INFO", "name": "PIM Item Reference", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200027, "metadata_element_list": [{"id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "name": "Hybris Item Reference", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1206, "metadata_element_list": [{"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ID", "name": "Hybris Item ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ID", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT TAG NAME", "name": "Hybris Assignment Label", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Assignment Label", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_TAG_NAME", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ATTRIBUTE NAME", "name": "Hybris Attribute Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Attribute Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ATTRIBUTE_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT CATALOG NAME", "name": "Hybris Catalog Mnemonic", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Catalog Mnemonic", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_CATALOG_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT PK", "name": "Hybris Item PK", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item PK", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_PK", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.SYSTEM ID", "name": "Hybris System ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris System ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "SYSTEM_ID", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.ASSIGNED", "name": "Assigned", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Assigned", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "ASSIGNED", "column_name": "ASSIGNED", "data_length": 38, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PIM TYPE", "name": "PIM Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "PIM Type", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_PIM_TYPE", "column_name": "PIM_TYPE", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS VIDEO", "name": "Media Analysis Video", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1003, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "name": "Labels", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 113, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.ID", "name": "Label Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Label Id", "values": [{"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 1}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 2}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "ID", "data_length": 40, "description": "Label Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.NAME", "name": "Label Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "clothing"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Label Name", "values": [{"value": {"type": "string", "value": "clothing"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "fabric"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "candy"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "NAME", "data_length": 40, "description": "Label Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.APPEARANCES", "name": "Label Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:03\\",\\"endTime\\":\\"0:00:03.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Label Appearances", "values": [{"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:03\\",\\"endTime\\":\\"0:00:03.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:03\\",\\"endTime\\":\\"0:00:03.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:07\\",\\"endTime\\":\\"0:00:07.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "APPEARANCES", "data_length": 0, "description": "Label Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "name": "Sentiments", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 114, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.ID", "name": "Sentiment Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "ID", "data_length": 40, "description": "Sentiment Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.NAME", "name": "Sentiment Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "NAME", "data_length": 40, "description": "Sentiment Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.APPEARANCES", "name": "Sentiment Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "APPEARANCES", "data_length": 0, "description": "Sentiment Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.SEEN.DURATION.RATIO", "name": "Sentiment Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Sentiment Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "name": "Keywords", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 115, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.ID", "name": "Keyword Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "ID", "data_length": 40, "description": "Keyword Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.NAME", "name": "Keyword Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "NAME", "data_length": 40, "description": "Keyword Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.APPEARANCES", "name": "Keyword Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Keyword Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "name": "Faces", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 111, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.ID", "name": "Face Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "ID", "data_length": 40, "description": "Face Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.NAME", "name": "Face Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "NAME", "data_length": 40, "description": "Face Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.TITLE", "name": "Face Title", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Title", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "TITLE", "data_length": 249, "description": "Face Title", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.DESCRIPTION", "name": "Face Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Face Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.APPEARANCES", "name": "Face Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "APPEARANCES", "data_length": 0, "description": "Face Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SPEAKER.FACE.ID", "name": "Video Speaker Object Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Speaker Object Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "THUMBNAIL_OBJECT_ID", "data_length": 40, "description": "Video Speaker Object Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.SEEN.DURATION.RATIO", "name": "Face Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "SEEN_DURATION_RATIO", "data_length": 20, "description": "Face Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "name": "Brands", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 112, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.ID", "name": "Video Brand Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "ID", "data_length": 40, "description": "Brand Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.NAME", "name": "Video Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Brand Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.DESCRIPTION", "name": "Video Brand Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Brand Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.WIKIURL", "name": "Video Brand Wiki URL", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Wiki URL", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "WIKIURL", "data_length": 200, "description": "Brand Wiki URL", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.APPEARANCES", "name": "Video Brand Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Brand Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.SEEN.DURATION.RATIO", "name": "Video Brand Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Brand Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "name": "Speeches", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 116, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.ID", "name": "SpeechText Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "SpeechText Id", "values": [{"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "ID", "data_length": 40, "description": "SpeechText Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXT", "name": "Speech Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Kinder"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Speech Text", "values": [{"value": {"type": "string", "value": "Kinder"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXT", "data_length": 1000, "description": "Speech Text", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXTTYPE", "name": "Speech Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "OCR"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Speech Type", "values": [{"value": {"type": "string", "value": "OCR"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXTTYPE", "data_length": 40, "description": "Speech Type", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.START TIME", "name": "Speech Start Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "0:00:09"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Speech Start Time", "values": [{"value": {"type": "string", "value": "0:00:09"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "START_TIME", "data_length": 40, "description": "Speech Start Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.END TIME", "name": "Speech End Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "0:00:09.04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Speech End Time", "values": [{"value": {"type": "string", "value": "0:00:09.04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "END_TIME", "data_length": 40, "description": "Speech End Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "name": "Speakers", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 122, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.ID", "name": "Speaker Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "ID", "data_length": 40, "description": "Speaker Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.NAME", "name": "Speaker Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "NAME", "data_length": 100, "description": "Speaker Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.APPEARANCES", "name": "Speaker Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "APPEARANCES", "data_length": 0, "description": "Speaker Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.FIELDGROUP.LOCALASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200057, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1239, "metadata_element_list": [{"id": "FERRERO.FIELD.COUNTRY", "name": "LOCAL COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "LOCAL COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USER", "name": "USER", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "USER", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_USER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.ASSOCIATION", "name": "TYPE OF ASSOCIATION", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "TYPE OF ASSOCIATION", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_ASSOCIATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.VALUE", "name": "VALUE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "VALUE", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_VALUE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "CG.CATEGORY.FADEL ASSET INFORMATION", "name": "Rights Asset Information", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200064, "metadata_element_list": [{"id": "CG.FIELD.RIGHTS MANAGED", "name": "Fadel IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fadel IP Rights", "enabled": true, "options": "", "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_RIGHTS_MANAGED_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGED", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.NEEDS RIGHTS MANAGEMENT", "name": "Needs Rights Management", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "10", "field_value": {"type": "string", "value": "N"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Needs Rights Management", "enabled": true, "options": "", "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_NEEDS_RIGHTS_MANAGEMENT_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "NEEDS_RIGHTS_MANAGEMENT", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.RIGHTS MANAGEMENT DESCRIPTION", "name": "Rights Management Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Rights Management Description", "enabled": true, "options": "", "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGEMENT_DESCRIPTION", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.RIGHTS MANAGEMENT STATUS", "name": "Rights Management Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Rights Management Status", "enabled": true, "options": "", "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_RIGHTS_MANAGEMENT_STATUS_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGEMENT_STATUS", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.FORCE SYNC", "name": "Force Sync", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Force Sync", "enabled": true, "options": "", "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_FORCE_SYNC_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "FORCE_SYNC", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.LAST SYNC TIME", "name": "Date of last data sync", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date of last data sync", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "LAST_SYNC_TIME", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "CG.CATEGORY.FADEL RIGHTS INFORMATION", "name": "Rights Information", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200065, "metadata_element_list": [{"id": "CG.TABLE.RIGHTS", "name": "Rights", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1256, "metadata_element_list": [{"id": "CG.FIELD.RIGHT TERRITORIES", "name": "Territory", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Territory", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "TERRITORY", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT USES", "name": "Use", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Use", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "USAGE", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT IN DATE", "name": "In Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "In Date", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "IN_DATE", "data_length": 10, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT OUT DATE", "name": "Out Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Out Date", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "OUT_DATE", "data_length": 10, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "saved_values_behavior_mode": 0}]}]}, {"id": "CG.CATEGORY.FADEL AGREEMENTS AND PARTIES", "name": "Agreements and Parties", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200067, "metadata_element_list": [{"id": "CG.TABLE.PARTIES.AGREEMENTS VW", "name": "Customized Table Parties and Agreements", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1258, "metadata_element_list": [{"id": "CG.FIELD.AGREEMENT NUMBER VW", "name": "Agreement Number ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Number ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_NUMBER", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT DESCRIPTION VW", "name": "Agreement Description ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Description ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_DESCRIPTION", "data_length": 2000, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT START DATE VW", "name": "Agreement Start Date ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Start Date ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_START_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT END DATE VW", "name": "Agreement End Date ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement End Date ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_END_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY NAME VW", "name": "Party Name ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Name ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_NAME", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY ROLE VW", "name": "Party Role ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Role ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_ROLE", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY EMAIL ADDRESS VW", "name": "Party Email Address ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Email Address ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_EMAIL_ADDRESS", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY PHONE NUMBER VW", "name": "Party Phone Number ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Phone Number ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_PHONE_NUMBER", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PRIMARY PARTY CONTACT VW", "name": "Primary Party Contact ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Primary Party Contact ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PRIMARY_PARTY_CONTACT", "data_length": 200, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 8, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "ARTESIA.CATEGORY.VIDEO ATTRIBUTES", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 0, "metadata_element_list": []}], "has_multilingual_fields": false}, "mime_type": "video/mp4", "path_list": [{"parents": [{"id": "90962e8228075df2ada17d7fb668aaca95c87092", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "90962e8228075df2ada17d7fb668aaca95c87092", "sequence_number": 0}, {"id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "name": "MASTER FOR FER ROCH", "container_state": "NORMAL", "original_uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "sequence_number": 0}, {"id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "name": "01. DE - Rocher ", "container_state": "NORMAL", "original_uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "sequence_number": 0}, {"id": "091216b59cad7f1ea815164c26db27e350c54023", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "sequence_number": 0}, {"id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "name": "01. Rocher", "container_state": "NORMAL", "original_uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "sequence_number": 0}, {"id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "name": "01. Ferrero Rocher", "container_state": "NORMAL", "original_uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "sequence_number": 0}, {"id": "93b0968611de11160ed068afeb9930b9965bd5ff", "name": "03. Premium Chocolate", "container_state": "NORMAL", "original_uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "90962e8228075df2ada17d7fb668aaca95c87092", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "90962e8228075df2ada17d7fb668aaca95c87092", "sequence_number": 0}, {"id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "name": "MASTER FOR FER ROCH", "container_state": "NORMAL", "original_uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "sequence_number": 0}, {"id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "name": "01. DE - Rocher ", "container_state": "NORMAL", "original_uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "sequence_number": 0}, {"id": "bfbc248a12a4bf0382406620f0d9ec41ff42e35e", "name": "01. Ferrero Rocher", "container_state": "NORMAL", "original_uoi_id": "bfbc248a12a4bf0382406620f0d9ec41ff42e35e", "sequence_number": 0}, {"id": "3d7debea6815ae46c9598191b1c645007666292a", "name": "03 . Premium Chocolate", "container_state": "NORMAL", "original_uoi_id": "3d7debea6815ae46c9598191b1c645007666292a", "sequence_number": 0}, {"id": "c0bb10be2b8f96ee4d27a2dfb7e0d03de68cf114", "name": "DE", "container_state": "NORMAL", "original_uoi_id": "c0bb10be2b8f96ee4d27a2dfb7e0d03de68cf114", "sequence_number": 0}, {"id": "b124e1ed196028bdd0e2c093e28078ca8d9ad462", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "b124e1ed196028bdd0e2c093e28078ca8d9ad462", "sequence_number": 0}, {"id": "68ce80e8c8a30badb82dabfd823886a6fa6fe309", "name": "Y - Geography", "container_state": "NORMAL", "original_uoi_id": "68ce80e8c8a30badb82dabfd823886a6fa6fe309", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}], "creator_id": "1003", "asset_state": "NORMAL", "checked_out": false, "folder_path": "", "content_size": 3080691, "content_type": "VIDEO", "content_state": "NORMAL", "date_imported": "2026-01-09T16:31:22.757+01:00", "import_job_id": 224850, "streaming_url": "https://ppr.dam.ferrero.com/video/data/repository/original/vol0/227/3e9383fd918d201a957214ea0a3e8091f358f74e_proxy.mp4", "subscribed_to": false, "collection_ids": [], "latest_version": true, "legacy_model_id": 116, "content_editable": true, "content_sub_type": "WHOLE", "import_user_name": "bizAdmin", "date_last_updated": "2026-01-09T16:34:31.08+01:00", "metadata_model_id": "ECOMMERCE", "original_asset_id": "312c9df00dc06d468e30794a7918992bcda8d0c3", "rendition_content": {"preview_content": {"id": "7057c1ba638c9ebe7e09ce035e1810b53b75fcf9", "url": "/otmmapi/v6/renditions/7057c1ba638c9ebe7e09ce035e1810b53b75fcf9", "name": "kinder-joy_videoE2E.mp4", "width": 640, "height": 360, "mime_type": "video/mp4", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "PREVIEW", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\227\\\\3e9383fd918d201a957214ea0a3e8091f358f74e_proxy.mp4", "content_size": 1177223, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "thumbnail_content": {"id": "4edf95577c6e1c13c01aad24cb541ebd4ccd2cfc", "url": "/otmmapi/v6/renditions/4edf95577c6e1c13c01aad24cb541ebd4ccd2cfc", "name": "4edf95577c6e1c13c01aad24cb541ebd4ccd2cfc.jpg", "width": 500, "height": 282, "mime_type": "image/jpeg", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "THUMBNAIL", "content_path": "data\\\\repository\\\\thumb\\\\vol0\\\\201\\\\4edf95577c6e1c13c01aad24cb541ebd4ccd2cfc_4edf95577c6e1c13c01aad24cb541ebd4ccd2cfc.jpg", "content_size": 13491, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "video_rollover_content": {"id": "d43f1ee64a70f45962dcd151b5d3826453b7e0bd", "url": "/otmmapi/v6/renditions/d43f1ee64a70f45962dcd151b5d3826453b7e0bd", "name": "kinder-joy_videoE2E.GIF", "width": 500, "height": 282, "mime_type": "image/gif", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "ROLLOVER", "content_path": "data\\\\repository\\\\rollover\\\\vol0\\\\16\\\\d43f1ee64a70f45962dcd151b5d3826453b7e0bd_rollover.gif", "content_size": 4110720, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_content_info": {"master_content": {"id": "32e3a391923942d3746e6d0a851be49ac4ddce3b", "url": "/otmmapi/v6/renditions/32e3a391923942d3746e6d0a851be49ac4ddce3b", "name": "kinder-joy_videoE2E.mp4", "width": -1, "height": -1, "mime_type": "video/mp4", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\227\\\\kinder-joy_videoE2E_32e3a391923942d3746e6d0a851be49ac4ddce3b.mp4", "content_size": 3080691, "unit_of_size": "BYTES", "content_checksum": "b36d1e9f85efe2c69693dde123d6c3b2", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "supporting_content": [{"id": "3e9383fd918d201a957214ea0a3e8091f358f74e", "url": "/otmmapi/v6/renditions/3e9383fd918d201a957214ea0a3e8091f358f74e", "name": "kinder-joy_videoE2E.mp4", "width": 640, "height": 360, "mime_type": "video/mp4", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "SUPPORTING", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\227\\\\3e9383fd918d201a957214ea0a3e8091f358f74e_proxy.mp4", "content_size": 1177223, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}]}, "asset_state_user_id": "1003", "master_content_info": {"id": "32e3a391923942d3746e6d0a851be49ac4ddce3b", "url": "/otmmapi/v6/renditions/32e3a391923942d3746e6d0a851be49ac4ddce3b", "name": "kinder-joy_videoE2E.mp4", "width": -1, "height": -1, "mime_type": "video/mp4", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\227\\\\kinder-joy_videoE2E_32e3a391923942d3746e6d0a851be49ac4ddce3b.mp4", "content_size": 3080691, "unit_of_size": "BYTES", "content_checksum": "b36d1e9f85efe2c69693dde123d6c3b2", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "delivery_service_url": "https://ppr.dam.ferrero.com/adaptivemedia/rendition?id=312c9df00dc06d468e30794a7918992bcda8d0c3", "product_associations": false, "security_policy_list": [{"id": 5467, "name": "Marketing Viewer", "status": "NORMAL", "created_by": "1003", "create_date": "2023-10-06T16:52:07.297+02:00", "description": "Marketing Viewer", "ownership_type": "PUBLIC"}], "thumbnail_content_id": "4edf95577c6e1c13c01aad24cb541ebd4ccd2cfc", "content_state_user_id": "1003", "content_state_user_name": "OTMM BusinessAdmin", "asset_lock_state_user_id": "1003", "metadata_state_user_name": "OTMM BusinessAdmin", "progressive_download_url": "https://ppr.dam.ferrero.com/video/data/repository/original/vol0/227/3e9383fd918d201a957214ea0a3e8091f358f74e_proxy.mp4", "access_control_descriptor": {"permissions_map": {"entry": [{"key": "text.securityPolicy.permission.Custom04Permission", "value": true}, {"key": "text.securityPolicy.permission.ContentEditPermission", "value": true}, {"key": "text.securityPolicy.permission.AssetViewPermission", "value": true}, {"key": "text.securityPolicy.permission.ProjectViewPermission", "value": true}, {"key": "text.securityPolicy.permission.MembershipEditPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom03Permission", "value": true}, {"key": "text.securityPolicy.permission.MetaDataEditPermission", "value": true}, {"key": "text.securityPolicy.permission.EditParentsPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom02Permission", "value": true}, {"key": "text.securityPolicy.permission.ExportPermission", "value": true}, {"key": "text.securityPolicy.permission.SummaryViewPermission", "value": true}, {"key": "text.securityPolicy.permission.PreviewViewPermission", "value": true}, {"key": "text.securityPolicy.permission.SubscribePermission", "value": true}, {"key": "text.securityPolicy.permission.DeleteAssetPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom01Permission", "value": true}]}}, "content_lock_state_user_id": "1003", "asset_state_last_update_date": "2026-01-09T16:34:31.08+01:00", "content_lock_state_user_name": "bizAdmin", "metadata_lock_state_user_name": "bizAdmin", "content_state_last_update_date": "2026-01-09T16:31:23.04+01:00", "inherited_metadata_collections": [{"container_id": "90962e8228075df2ada17d7fb668aaca95c87092", "container_name": "05. Final Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "90962e8228075df2ada17d7fb668aaca95c87092", "originator_id": "90962e8228075df2ada17d7fb668aaca95c87092", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "05. Final Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "container_name": "MASTER FOR FER ROCH", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "MASTER FOR FER ROCH"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000779"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "MASTER_FOR_FER_ROCH_CQ_LG_DE_PRE_0000779"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local comm on global brands"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Master Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Master Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2026/2027"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "B1"}, "display_value": "Master campaign ready for re-mastering", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ADDITIONALAPPROVER", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.LICENSING", "tabular": false, "value_id": {"uoi_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "originator_id": "66c4922e8c4a1cd45d7dc7cd334fa2f77d159fab", "inherited_field_id": "d0ef653291e269a7d1ddf0ebfedd1c6ad70b1c59"}, "metadata_element": {"id": "FERRERO.FIELD.LICENSING", "name": "Campaign License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "LICENSING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}}]}, {"container_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "container_name": "01. DE - Rocher ", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "bb01cf85444107f22341d2b88421f0cbaade0bf9"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E006"}, "display_value": "GERMANY", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Local DE Editable Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Premium Chocolate Local DE Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "8f497ce53d23899c7c09aa5a7ca69c9f55c3a62d"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E64"}, "display_value": "GERMANY", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "ca70a6d55e4277ecbef2a01a593c614501cbcf74"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "3e9d669ab1047383d0416ba40af75744148c94c8"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0e241fc386dcd91baa31a409e297169fe4a352c2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "2e3e0f2be0e487b540d9b63cb8c0e9ed9c6b1bb6"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "359c98154f230a60acc6b4eb048e129411d7a778"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "b3698893fc223e8371f4e4c0d560d0536c724a09"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "e92f9f10c0c29dda8261218c2c72a0baa66472f2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "15dff42c3b196ba3ae5b3c2ea33f00e347e6f654"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Extended Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0ae044cd9dddf86cd9406c9edc3996b18c430be0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "name": "AMMC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AMMC", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LOCAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "7806fed6127b50c21f6b03e1f7b63f3dedc1e8d1"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "RMMC", "values": [{"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "4c8a2d6e178638bfacfeaf3f7f6f1000304693a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "name": "Product Asset Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Product Asset Approval Ferrero Rocher Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Asset Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCT_ASSET_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local comm on global brands"}, "display_value": "Local comm on global brands", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "5a1ae26558efdc03336c0df838dd9e7c2a51c687"}, "metadata_element": {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "name": "Market Unit", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market Unit", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETUNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "MARKET_UNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "091216b59cad7f1ea815164c26db27e350c54023", "container_name": "EU", "container_type_id": "GEOGRAPHYLOCAL", "container_type_name": "L4 - GEOGRAPHY LOCAL", "inherited_metadata_values": [{"id": "FERRERO.MARKET.FOLDER.GLOBAL", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "4c4d4bf36bf8b1ace55f990e78d6332a9cb20990"}, "metadata_element": {"id": "FERRERO.MARKET.FOLDER.GLOBAL", "name": "Global/Local (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "LOCAL"}, "display_value": "Local", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local (Marketing)", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "GLOBALLOCAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_AREA", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "3dc200c993ab8263952dc6da1498026f615f45dd"}, "metadata_element": {"id": "MARKETING_AREA", "name": "AREA", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E010"}, "display_value": "EUROPE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "AREA", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "AREA", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "AREA", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "dc7749c3e113ec9e0b9e9a3840ea55673ca5e49f"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "f2d658a3829c2ea158ae70a4b4e7928bcf88f8e2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "972d0258a82de85672bd84d8af68cdb67ad3d3ca"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "1212505ad3fe4c9d7458568f3d95aeb4c4e5c37e"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "9d1dfdef55ff7a3eb03552988ddf729c7a0f5107"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "54f006eeb366121a29ee98da33d437615dcd34e0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "1fd8802010e30d44cebb2f3eb090b12ac550f97d"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "8b6e1d8f7dc3c4671cfc11a2914d838ca3ee3f3b"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "be0dc9a87262ee7fd165237b531ba3b7aa93a260"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "2f99f0f0f9e43fb34df9222c8b73a86fb78e473e"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "container_name": "01. Rocher", "container_type_id": "GLOBALBRAND", "container_type_name": "L3 - BRAND", "inherited_metadata_values": [{"id": "FERRERO.TABULAR.NEW.BRAND", "tabular": true, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "9bb1c183135f5240f09132aef59c4ea48c762381"}, "metadata_element": {"id": "FERRERO.TABULAR.NEW.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF04"}, "display_value": "ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND (Marketing)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF04"}, "display_value": "ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "BRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TABULAR_BRAND", "column_name": "BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.NEW.BRAND", "parent_table_name": "BRAND (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "tabular": true, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "a37b13c02cba799378211e17b73234a0d836f9b6"}, "metadata_element": {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "CQ"}, "display_value": "FERRERO ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND(HARMONIZED)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "CQ"}, "display_value": "FERRERO ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.HARMONIZEDBRAND", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_HARMONIZEDBRAND", "column_name": "HARMONIZEDBRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.HARMONIZEDBRAND", "parent_table_name": "BRAND(HARMONIZED)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "AGENCY.COLLABORATION", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "183d6e0957a9940f9b18ef44f46d957802b63397"}, "metadata_element": {"id": "AGENCY.COLLABORATION", "name": "Agency collaboration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency collaboration", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "AGENCY_COLLABORATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "AGENCY.SHARING", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "d0e2b725ddfdc452cc3ba750bbe8ec059c6b01ba"}, "metadata_element": {"id": "AGENCY.SHARING", "name": "Agency sharing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency sharing", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "AGENCY_SHARING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "CONTENT.SCALING.AGENCYNAME", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "f9dfa695cc5ef8cd3fafada4e44cfdaa1522d58a"}, "metadata_element": {"id": "CONTENT.SCALING.AGENCYNAME", "name": "Content Scaling agency name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Scaling agency name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENTSCALING_AGENCYNAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "container_name": "01. Ferrero Rocher", "container_type_id": "GLOBALSUBCATEGORY", "container_type_name": "L2 - SUBCATEGORY", "inherited_metadata_values": [{"id": "MARKETING_SUBCATEGORY", "tabular": false, "value_id": {"uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "originator_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "inherited_field_id": "3000ad591e09b5c75f85fc2ccbb9ebeb31b3ab78"}, "metadata_element": {"id": "MARKETING_SUBCATEGORY", "name": "SUBCATEGORY", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Mart-Ferrero-Rocher"}, "display_value": "Ferrero Rocher", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "SUBCATEGORY", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "SUBCATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "SUBCATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "tabular": true, "value_id": {"uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "originator_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "inherited_field_id": "2c751ce760d88c0e271925ea5149348106944bfa"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Subcategory Owner", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_SUBCATEGORY_OWNER_TM", "column_name": "SUBCATEGORY_OWNER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "parent_table_name": "Subcategory Owner", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "container_name": "03. Premium Chocolate", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "originator_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E06"}, "display_value": "PREMIUM CHOCOLATE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "originator_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final Approver BPS ", "values": [{"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}], "asset_lock_state_last_update_date": "2026-01-09T16:34:31.167+01:00", "content_lock_state_last_update_date": "2026-01-09T16:31:23.207+01:00"} \N \N active f \N \N 2026-01-16 20:54:24.758256 2026-01-16 20:54:24.758256 2026-01-16 20:54:24.758256 19 MoFRIA b5e69f3efdd81cd3a604708ed10c55a466d68b0e download .jpg \N image/jpeg \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N d4d9835db002b9992125246f2abb7117c99ab016 Box File ID: 2105226618225\nBox URL: https://app.box.com/file/2105226618225\nDAM Asset ID: b5e69f3efdd81cd3a604708ed10c55a466d68b0e {"name": "download.jpg", "links": {"links": [], "source_id": "b5e69f3efdd81cd3a604708ed10c55a466d68b0e"}, "locked": false, "deleted": false, "expired": false, "version": 1, "asset_id": "b5e69f3efdd81cd3a604708ed10c55a466d68b0e", "metadata": {"id": "ECOMMERCE", "name": "Marketing Asset", "type": "com.artesia.metadata.MetadataModel", "legacy_id": 116, "metadata_element_list": [{"id": "FERRERO.CATEGORY.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200054, "metadata_element_list": [{"id": "FERRERO.FIELD.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Status", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.CONTENT_STATUS", "edit_type": "COMBO_NOTNULL", "facetable": false, "searchable": true, "table_name": "FERRERO_CONTENT_STATUS_MD", "column_name": "CONTENT_STATUS", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9215, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRER.CATEGORY.ASSET_INFO", "name": "Asset Info", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200022, "metadata_element_list": [{"id": "FERRERO.FIELD.MKTG.ASSET TYPE", "name": "Asset Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.ASSETTYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.FISCAL YEAR", "name": "Release Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2026/2027"}, "display_value": "2026/2027", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Release Fiscal Year", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_DOMAIN_FISCAL_YEAR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "FISCAL__YEAR", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "name": "Main Languages", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1210, "metadata_element_list": [{"id": "MAIN_LANGUAGES", "name": "MAIN LANGUAGES", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "MAIN LANGUAGES", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MAIN LAGUAGES_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MAIN_LANGUAGE_TABLE", "column_name": "MAIN_LANGUAGE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "parent_table_name": "Main Languages", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.ASSET DESCRIPTION", "name": "Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Description", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "DESCR", "data_length": 249, "description": "Descriptive information", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.FLAVOUR", "name": "Flavour", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Flavour", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.FLAVOUR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FLAVOUR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.SIZE", "name": "Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Size", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.SIZE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SIZE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1241, "metadata_element_list": [{"id": "FERRERO.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Compliance", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ASSETCOMPLIANCE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_COMPLIANCE", "column_name": "ASSET_COMPLIANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "parent_table_name": "Asset Compliance", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.TAG DETAILS", "name": "Tag Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 118, "metadata_element_list": [{"id": "ARTESIA.FIELD.TAG", "name": "Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "food", "field_value": {"type": "string", "value": "food"}, "display_value": "food", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Tag", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "food", "field_value": {"type": "string", "value": "food"}, "display_value": "food", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.TAGS", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "OTMM_TAGS", "column_name": "TAG", "data_length": 80, "description": "Tag", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG CONFIDENCE", "name": "Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 67.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Confidence", "values": [{"value": {"type": "decimal", "value": 67.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Confidence", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG TYPE", "name": "Tag Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Tag Type", "values": [{"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "TAG_TYPE", "data_length": 10, "description": "Tag Type", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED BY", "name": "Associated By", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Associated By", "values": [{"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_BY", "data_length": 10, "description": "Associated By", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED DATE", "name": "Associated Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-14T14:24:27.55+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Associated Date", "values": [{"value": {"type": "dateTime", "value": "2026-01-14T14:24:27.55+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_DATE", "data_length": 10, "description": "Associated Date", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.STATE", "name": "Global/Local", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "GLOBAL"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO_NOTNULL", "facetable": true, "searchable": true, "table_name": "FERRERO_IC_ASSET_DETAILS", "column_name": "ASSET_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.ASPECT RATIO", "name": "Aspect Ratio (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio (Marketing)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASPECT_RATIO", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASPECT_RATIO", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "name": "Tag (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1222, "metadata_element_list": [{"id": "MARKETING_TAG", "name": "Marketing Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Marketing Tag", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.DOMAIN.TAG", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TAG_MARKET", "column_name": "TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "parent_table_name": "Tag (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.TAGS", "name": "Auto-Generated Tags", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Auto-Generated Tags", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "AUTO_GENERATED_TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CERTIFIER", "name": "Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approver", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.MARKETING.FIELD.APPROVAL DATE", "name": "Approval__Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approval__Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.LEGAL APPROVAL DATE", "name": "Legal Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CERTIFIER", "name": "IA&CC Certifier", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Certifier", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CC APPROVAL DATE", "name": "IA&CC Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "name": "Extended Approval", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1230, "metadata_element_list": [{"id": "FERRERO.FIELD.EXTENDED.APPROVAL", "name": "Extended Approval required by:", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended Approval required by:", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COMMENTS", "name": "Comment", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comment", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "COMMENTS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.DATE", "name": "Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USERS", "name": "User ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "User ID", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "USERS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXTENDED.JOBID", "name": "Extended JobID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended JobID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.MIGRATION.INDEX", "name": "Migration Index", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Migration Index", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MIGRATION.INDEX", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MIGRATION_INDEX", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "FERRERO_MARKET_MARKETING_CREATOR", "name": "Marketing Creator", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Marketing Creator", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.CREATOR", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MARKETING_CREATOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "ARTESIA.FIELD.IS LATEST VERSION", "name": "Is Latest Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Y"}, "display_value": "Yes", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Is Latest Version", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.YES_NO", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "IS_LATEST_VERSION", "data_length": 1, "description": "Is this the latest version? (Y/N)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET VERSION", "name": "Asset Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 1}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Version", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "INTEGER", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "VERSION", "data_length": 12, "description": "Version number of asset", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET_ID", "name": "Asset ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "b5e69f3efdd81cd3a604708ed10c55a466d68b0e"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset ID", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "LOGICAL_UOI_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.ECOMMERCE STATUS", "name": "Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "PUBLISHED"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Status", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "ASSET_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CREATOR", "name": "Uploaded by", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Uploaded by", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_USER_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.FIELD.CREATION DATE", "name": "Upload Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-14T14:23:41.747+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Upload Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_DT", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.ASSET NAME", "name": "Asset Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "download.jpg"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Name", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "description": "Original name of master object", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.CONTENT TYPE", "name": "Content Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "BITMAP"}, "display_value": "Image", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Type", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.CONTENT_TYPES", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "CONTENT_TYPE", "data_length": 8, "description": "Content Type", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.MIME TYPE", "name": "File Extension", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "image/jpeg"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Extension", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_MIME_TYPE", "data_length": 80, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.FILE.SIZE", "name": "File Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "long", "value": 18093}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Size", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "LONG", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_SIZE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP RESOLUTION", "name": "Bitmap Resolution", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 72}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Resolution", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_RESOLUTION", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP WIDTH", "name": "Bitmap Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 257}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Width", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_WIDTH", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP HEIGHT", "name": "Bitmap Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 196}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Height", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_HEIGHT", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "name": "Approval Metadata", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1249, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.DEPARTMENT", "name": "Department", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Department", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "DEPARTMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.CERTIFIER", "name": "Certifier", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Certifier", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL DATE", "name": "Approval Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Approval Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "APPROVAL_DATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.COMMENT", "name": "Comments", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comments", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "COMMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.TYPE OF APPROVAL", "name": "Type of Approval", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Approval", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "TYPE_OF_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL STATUS", "name": "Approval Status", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Approval Status", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "APPROVAL_STATUS", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.SUB JOBID", "name": "Sub Job Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sub Job Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.VIDEO.BIT_RATE", "name": "Bitrate", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitrate", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "BIT_RATE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.EMBEDDED.FIELD.DURATION", "name": "Duration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Duration", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "DURATION_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.ASPECT RATIO", "name": "Aspect Ratio", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "ASPECT_RATIO", "data_length": 30, "displayable": false, "instructions": "ASPECT_RATIO", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME HEIGHT", "name": "Frame Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Height", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_HEIGHT", "data_length": 12, "displayable": true, "instructions": "FRAME_HEIGHT", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME WIDTH", "name": "Frame Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Width", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_WIDTH", "data_length": 12, "displayable": true, "instructions": "FRAME_WIDTH", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.ASPECT.RATIO.POC", "name": "Aspect Ratio(POC)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio(POC)", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASPECT_RATIO_TABLE", "column_name": "ASPECT_RATIO", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "PRODUCT.DETAILS", "name": "Product Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200029, "metadata_element_list": [{"id": "FERRERO.TABLE.EANCODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1208, "metadata_element_list": [{"id": "EAN_CODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "EAN CODE/ 77 CODE", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "EAN.CODE", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "EAN_CODE", "column_name": "EAN_CODE_DESCRIPTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "COUNTRY", "name": "COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "EAN_CODE", "column_name": "COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKETING.ADVANCE.PRODUCT.LINK", "name": "Asset-to-product relation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset-to-product relation", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_MARKETING_ADVANCE_PRODUCT_LINK", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ADVANCE_PRODUCT_LINK", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 10182, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.SUB BRAND", "name": "Sub-Brands", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Sub-Brands", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.SUBBRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "SUB_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT WEIGHT", "name": "Product Weight", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Weight", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_WEIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.CONSUMER UNIT PACKAGING", "name": "Consumer Unit Packaging", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Consumer Unit Packaging", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PACK", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "CONSUMER_UNIT_PACKAGING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.4 DIGIT CODE", "name": "4 Digit Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "4 Digit Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "DIGITCODE", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERREO.ECOM.RETAILER_SPECIFIC_FIELD", "name": "Retailer Specific", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Retailer Specific", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "RETAILER_SPECIFIC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "cascading_group_id": "FERRERO.RETAILER.SPECIFIC", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY START PERIOD", "name": "Asset validity start period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity start period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_STARTING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY END PERIOD", "name": "Asset validity end period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity end period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_ENDING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.ASSET.NAMING.CONVENTION", "name": "Does asset need GS1 naming convention", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Does asset need GS1 naming convention", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASSETNAMINGCONVENTION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_NAMING_CONVENTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9515, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT VIEW", "name": "Product View", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product View", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT VIEW", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_VIEW", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT ANGLE", "name": "Product Angle", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Angle", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT.ANGLE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_ANGLE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT STATE", "name": "Product State", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product State", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT STATE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PROMOTION ID", "name": "Promo ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Promo ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROMO_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.BUSINESS.ASSET TYPE", "name": "Asset Type (eDAM)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Angled view", "field_value": {"type": "string", "value": "angledview"}, "display_value": "ANGLED VIEW", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Type (eDAM)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "OTMM.DOMAIN.OTMM_ASSETTYPE_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_BUSINESS_INFO", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7244, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200048, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.AGENCY NAME", "name": "Agency Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "0000000001"}, "display_value": "ATest", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Agency Name", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.AGENCY_NAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AGENCY_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7336, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.CREATIX", "name": "CreativeX", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200059, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.CREATIVEX", "name": "Confidence", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1245, "metadata_element_list": [{"id": "FERRERO.TAB.FIELD.CREATIVEX", "name": "Platform > Rating (%)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Platform > Rating (%)", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_CREATIVEX", "column_name": "CREATIVEX_NEW", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CREATIVEX", "parent_table_name": "Confidence", "cascading_group_id": "FERRERO.CREATIVEX.CHAR", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.CREATIVEX LINK", "name": "CreativeX Hyperlink", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "CreativeX Hyperlink", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_CREATIVEX", "column_name": "CREATIVE_LINK", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.IP_RIGHTS", "name": "IP Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200046, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.IPRIGHT", "name": "IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IP Rights", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.IPRIGHTS", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IP_RIGHTS", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.BUYOUT", "name": "Touchpoint Scope", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Touchpoint Scope", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.TOTAL_BUYOUT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TOTAL_BUYOUT", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.FERRERO PROPERTY", "name": "Ferrero Property", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Ferrero Property", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.FERRERO_PROPERTY", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FERRERO_PROPERTY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200035, "metadata_element_list": [{"id": "FERRERO.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1209, "metadata_element_list": [{"id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "name": "IP Coverage, Area, Region & Market Unit", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Coverage, Area, Region & Market Unit", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "IPCOVERAGE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "cascading_group_id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHT TYPE", "name": "Copyright Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHT_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.MEDIATYPE", "name": "Media Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Media Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MEDIA_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "MEDIA_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE FROM", "name": "Expiration of Usage - From", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - From", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_FROM", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE TO", "name": "Expiration of Usage - To", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - To", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_TO", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO._DURATION", "name": "IP Duration", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Duration", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "ECOM_DURATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHTTYPE DETAILS", "name": "Copyright Type Details", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type Details", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHTTYPE_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 6, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.MARKET.VID_STAT_RIGHT", "name": "Video & Static Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200047, "metadata_element_list": [{"id": "FERRERO.MARKET.VID_N_STAT", "name": "Video and Static Right", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video and Static Right", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VID_AND_STAT_RIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.VID_STAT_TYPE", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1221, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.TYPE_VID", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Video & Static Right", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TYPE_VID_STAT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_MARKET_TYPE_VID_STAT", "column_name": "TYPE_OF_VIDEO_STATIC_RIGHT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.VID_STAT_TYPE", "parent_table_name": "Type of Video & Static Right", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKET.PROD_COMPANY", "name": "Production House", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Production House", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.PRODUCT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200050, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.LICENSIN", "name": "Licensing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Licensing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSING", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "cascading_group_id": "FERRERO.MARKET.CG.LICENSE", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.SPOT_DETAILS", "name": "Spot Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200049, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.SPOT_VERSION", "name": "Spot Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Version", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_VERSION", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_VERSION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.SPOT_TYPE", "name": "Spot Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_TYPE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.DIRECTOR_NAME", "name": "Director Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Director Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "DIRECTOR_NAME", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VIDEO_POST_PROD_COMPANY", "name": "Video Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VID_POST_PROD_CONTACT", "name": "Video Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_COMPANY", "name": "Audio Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_CONTACT", "name": "Audio Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.BROADCASTER.CODE", "name": "Broadcaster Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Broadcaster Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BROADCASTER_CODE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.TECHNICAL_VALIDATION", "name": "Technical Validation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Technical Validation", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TECHNICAL_VALIDATION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS", "name": "Media Analysis", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1002, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "name": "Categories", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 105, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY NAME", "name": "Category Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "indoor_marketstore"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Category Name", "values": [{"value": {"type": "string", "value": "indoor_marketstore"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "NAME", "data_length": 100, "description": "Category Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY CONFIDENCE", "name": "Category Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 56.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Category Confidence", "values": [{"value": {"type": "decimal", "value": 56.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "CONFIDENCE", "data_length": 10, "description": "Category Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES COUNT", "name": "Faces Count", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Faces Count", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACECOUNT", "column_name": "COUNT", "data_length": 10, "description": "Faces Count", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "name": "Face Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 106, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME", "name": "Recognized Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME", "data_length": 2000, "description": "Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME CONFIDENCE", "name": "Recognized Name Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME_CONFIDENCE", "data_length": 10, "description": "Name Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE", "name": "Person Age", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE", "data_length": 10, "description": "Person Age", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE CONFIDENCE", "name": "Person Age Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Person Age Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_CONFIDENCE", "data_length": 10, "description": "Person Age Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER", "name": "Gender", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Gender", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.GENDER", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER", "data_length": 40, "description": "Gender", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER CONFIDENCE", "name": "Gender Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Gender Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER_CONFIDENCE", "data_length": 10, "description": "Gender Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.FACE COORDS", "name": "Face Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "FACE_COORDS", "data_length": 200, "description": "Face Coordinates like postion, height,width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE GROUP", "name": "Person Age Group", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age Group", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.AGE GROUP", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_GROUP", "data_length": 10, "description": "Person Age Group", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "name": "Safe Content", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 107, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONTENT TYPE", "name": "Safe Content Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Safe Content Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENTS", "data_length": 20, "description": "Safe Content Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONFIDENCE", "name": "Content Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Content Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENT_CONFIDENCE", "data_length": 10, "description": "Safe Content Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "name": "Colors", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 108, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.NAME", "name": "Color", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Yellow"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Color", "values": [{"value": {"type": "string", "value": "Yellow"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "Grey"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "NAME", "data_length": 25, "description": "COLOR", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.PROPORTION", "name": "Color Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Color Confidence", "values": [{"is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "PROPORTION", "data_length": 10, "description": "Proportion", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.FOREGROUND", "name": "Foreground Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Yellow"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Foreground Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "FOREGROUND", "data_length": 25, "description": "Foreground Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.BACKGROUND", "name": "Background Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Grey"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Background Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "BACKGROUND", "data_length": 25, "description": "Background Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.ISBW", "name": "Is Black and White", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "false"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Is Black and White", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "ISBW", "data_length": 10, "description": "Is Black and White", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "name": "Captions", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 109, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION TEXT", "name": "Caption Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "a close up of a keyboard"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Caption Text", "values": [{"value": {"type": "string", "value": "a close up of a keyboard"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "TEXT", "data_length": 2000, "description": "Caption Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION CONFIDENCE", "name": "Caption Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 56.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Caption Confidence", "values": [{"value": {"type": "decimal", "value": 56.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "CAPTION_CONFIDENCE", "data_length": 10, "description": "Caption Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "name": "Image Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 110, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.IMAGE TYPE", "name": "Analysis Image Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Analysis Image Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_IMAGE_TYPE", "column_name": "TYPE", "data_length": 100, "description": "Image Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "parent_table_name": "Image Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.DATE", "name": "Date: Media Analysis", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-14T14:24:27+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date: Media Analysis", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MEDIA_ANALYSIS_DATE", "data_length": 25, "description": "Date Media Analysis was done on the asset.", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR LANGUAGE", "name": "Image Text Language", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "unk"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Image Text Language", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "LANGUAGE", "data_length": 10, "description": "OCR data language", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR TEXT", "name": "Text on Image", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Text on Image", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "TEXT", "data_length": 4000, "description": "OCR Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "name": "Embedded Brand Info", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 119, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.NAME", "name": "Embedded Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Embedded Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Embedded Brand Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.CONFIDENCE", "name": "Embedded Brand Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Embedded Brand Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Embedded Brand Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.COORDINATES", "name": "Embedded Brand Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Embedded Brand Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "COORDINATES", "data_length": 200, "description": "Embedded Brand Coordinates like position, height, width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "HYBRIS.PRODUCT.INFO", "name": "PIM Item Reference", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200027, "metadata_element_list": [{"id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "name": "Hybris Item Reference", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1206, "metadata_element_list": [{"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ID", "name": "Hybris Item ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ID", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT TAG NAME", "name": "Hybris Assignment Label", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Assignment Label", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_TAG_NAME", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ATTRIBUTE NAME", "name": "Hybris Attribute Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Attribute Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ATTRIBUTE_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT CATALOG NAME", "name": "Hybris Catalog Mnemonic", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Catalog Mnemonic", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_CATALOG_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT PK", "name": "Hybris Item PK", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item PK", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_PK", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.SYSTEM ID", "name": "Hybris System ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris System ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "SYSTEM_ID", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.ASSIGNED", "name": "Assigned", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Assigned", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "ASSIGNED", "column_name": "ASSIGNED", "data_length": 38, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PIM TYPE", "name": "PIM Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "PIM Type", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_PIM_TYPE", "column_name": "PIM_TYPE", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS VIDEO", "name": "Media Analysis Video", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1003, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "name": "Labels", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 113, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.ID", "name": "Label Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "ID", "data_length": 40, "description": "Label Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.NAME", "name": "Label Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "NAME", "data_length": 40, "description": "Label Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.APPEARANCES", "name": "Label Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "APPEARANCES", "data_length": 0, "description": "Label Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "name": "Sentiments", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 114, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.ID", "name": "Sentiment Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "ID", "data_length": 40, "description": "Sentiment Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.NAME", "name": "Sentiment Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "NAME", "data_length": 40, "description": "Sentiment Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.APPEARANCES", "name": "Sentiment Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "APPEARANCES", "data_length": 0, "description": "Sentiment Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.SEEN.DURATION.RATIO", "name": "Sentiment Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Sentiment Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "name": "Keywords", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 115, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.ID", "name": "Keyword Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "ID", "data_length": 40, "description": "Keyword Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.NAME", "name": "Keyword Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "NAME", "data_length": 40, "description": "Keyword Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.APPEARANCES", "name": "Keyword Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Keyword Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "name": "Faces", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 111, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.ID", "name": "Face Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "ID", "data_length": 40, "description": "Face Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.NAME", "name": "Face Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "NAME", "data_length": 40, "description": "Face Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.TITLE", "name": "Face Title", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Title", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "TITLE", "data_length": 249, "description": "Face Title", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.DESCRIPTION", "name": "Face Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Face Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.APPEARANCES", "name": "Face Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "APPEARANCES", "data_length": 0, "description": "Face Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SPEAKER.FACE.ID", "name": "Video Speaker Object Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Speaker Object Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "THUMBNAIL_OBJECT_ID", "data_length": 40, "description": "Video Speaker Object Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.SEEN.DURATION.RATIO", "name": "Face Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "SEEN_DURATION_RATIO", "data_length": 20, "description": "Face Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "name": "Brands", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 112, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.ID", "name": "Video Brand Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "ID", "data_length": 40, "description": "Brand Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.NAME", "name": "Video Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Brand Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.DESCRIPTION", "name": "Video Brand Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Brand Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.WIKIURL", "name": "Video Brand Wiki URL", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Wiki URL", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "WIKIURL", "data_length": 200, "description": "Brand Wiki URL", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.APPEARANCES", "name": "Video Brand Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Brand Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.SEEN.DURATION.RATIO", "name": "Video Brand Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Brand Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "name": "Speeches", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 116, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.ID", "name": "SpeechText Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "SpeechText Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "ID", "data_length": 40, "description": "SpeechText Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXT", "name": "Speech Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Text", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXT", "data_length": 1000, "description": "Speech Text", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXTTYPE", "name": "Speech Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXTTYPE", "data_length": 40, "description": "Speech Type", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.START TIME", "name": "Speech Start Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Start Time", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "START_TIME", "data_length": 40, "description": "Speech Start Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.END TIME", "name": "Speech End Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech End Time", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "END_TIME", "data_length": 40, "description": "Speech End Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "name": "Speakers", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 122, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.ID", "name": "Speaker Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "ID", "data_length": 40, "description": "Speaker Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.NAME", "name": "Speaker Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "NAME", "data_length": 100, "description": "Speaker Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.APPEARANCES", "name": "Speaker Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "APPEARANCES", "data_length": 0, "description": "Speaker Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.FIELDGROUP.LOCALASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200057, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1239, "metadata_element_list": [{"id": "FERRERO.FIELD.COUNTRY", "name": "LOCAL COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "LOCAL COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USER", "name": "USER", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "USER", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_USER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.ASSOCIATION", "name": "TYPE OF ASSOCIATION", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "TYPE OF ASSOCIATION", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_ASSOCIATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.VALUE", "name": "VALUE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "VALUE", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_VALUE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "CG.CATEGORY.FADEL ASSET INFORMATION", "name": "Rights Asset Information", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200064, "metadata_element_list": [{"id": "CG.FIELD.RIGHTS MANAGED", "name": "Fadel IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fadel IP Rights", "enabled": true, "options": "", "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_RIGHTS_MANAGED_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGED", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.NEEDS RIGHTS MANAGEMENT", "name": "Needs Rights Management", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "10", "field_value": {"type": "string", "value": "N"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Needs Rights Management", "enabled": true, "options": "", "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_NEEDS_RIGHTS_MANAGEMENT_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "NEEDS_RIGHTS_MANAGEMENT", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.RIGHTS MANAGEMENT DESCRIPTION", "name": "Rights Management Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Rights Management Description", "enabled": true, "options": "", "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGEMENT_DESCRIPTION", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.RIGHTS MANAGEMENT STATUS", "name": "Rights Management Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Rights Management Status", "enabled": true, "options": "", "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_RIGHTS_MANAGEMENT_STATUS_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGEMENT_STATUS", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.FORCE SYNC", "name": "Force Sync", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Force Sync", "enabled": true, "options": "", "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_FORCE_SYNC_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "FORCE_SYNC", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.LAST SYNC TIME", "name": "Date of last data sync", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date of last data sync", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "LAST_SYNC_TIME", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "CG.CATEGORY.FADEL RIGHTS INFORMATION", "name": "Rights Information", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200065, "metadata_element_list": [{"id": "CG.TABLE.RIGHTS", "name": "Rights", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1256, "metadata_element_list": [{"id": "CG.FIELD.RIGHT TERRITORIES", "name": "Territory", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Territory", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "TERRITORY", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT USES", "name": "Use", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Use", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "USAGE", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT IN DATE", "name": "In Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "In Date", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "IN_DATE", "data_length": 10, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT OUT DATE", "name": "Out Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Out Date", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "OUT_DATE", "data_length": 10, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "saved_values_behavior_mode": 0}]}]}, {"id": "CG.CATEGORY.FADEL AGREEMENTS AND PARTIES", "name": "Agreements and Parties", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200067, "metadata_element_list": [{"id": "CG.TABLE.PARTIES.AGREEMENTS VW", "name": "Customized Table Parties and Agreements", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1258, "metadata_element_list": [{"id": "CG.FIELD.AGREEMENT NUMBER VW", "name": "Agreement Number ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Number ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_NUMBER", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT DESCRIPTION VW", "name": "Agreement Description ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Description ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_DESCRIPTION", "data_length": 2000, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT START DATE VW", "name": "Agreement Start Date ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Start Date ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_START_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT END DATE VW", "name": "Agreement End Date ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement End Date ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_END_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY NAME VW", "name": "Party Name ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Name ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_NAME", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY ROLE VW", "name": "Party Role ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Role ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_ROLE", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY EMAIL ADDRESS VW", "name": "Party Email Address ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Email Address ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_EMAIL_ADDRESS", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY PHONE NUMBER VW", "name": "Party Phone Number ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Phone Number ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_PHONE_NUMBER", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PRIMARY PARTY CONTACT VW", "name": "Primary Party Contact ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Primary Party Contact ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PRIMARY_PARTY_CONTACT", "data_length": 200, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 8, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}], "has_multilingual_fields": false}, "mime_type": "image/jpeg", "path_list": [{"parents": [{"id": "d4d9835db002b9992125246f2abb7117c99ab016", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "d4d9835db002b9992125246f2abb7117c99ab016", "sequence_number": 0}, {"id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "name": "MASTER CAMP FER ROCHER 12.01.2", "container_state": "NORMAL", "original_uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "sequence_number": 0}, {"id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "name": "01. DE - Rocher ", "container_state": "NORMAL", "original_uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "sequence_number": 0}, {"id": "091216b59cad7f1ea815164c26db27e350c54023", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "sequence_number": 0}, {"id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "name": "01. Rocher", "container_state": "NORMAL", "original_uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "sequence_number": 0}, {"id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "name": "01. Ferrero Rocher", "container_state": "NORMAL", "original_uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "sequence_number": 0}, {"id": "93b0968611de11160ed068afeb9930b9965bd5ff", "name": "03. Premium Chocolate", "container_state": "NORMAL", "original_uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "sequence_number": 0}], "complete": true, "sequence_number": 2, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "sequence_number": 0}, {"id": "4b05a895330aa2fb6046f59731aba5dd93858431", "name": "LOCADAPLOCCOMM - FER ROCHER 4", "container_state": "NORMAL", "original_uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "sequence_number": 0}, {"id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "name": "25-26", "container_state": "NORMAL", "original_uoi_id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "sequence_number": 0}, {"id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "name": "02. Campaign", "container_state": "NORMAL", "original_uoi_id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "sequence_number": 0}, {"id": "f31042cfc487f066486c46527c076b8ee6618ceb", "name": "01. Standard", "container_state": "NORMAL", "original_uoi_id": "f31042cfc487f066486c46527c076b8ee6618ceb", "sequence_number": 0}, {"id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "name": "02. Sweden", "container_state": "NORMAL", "original_uoi_id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "sequence_number": 0}, {"id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "name": "SCANDINAVIA", "container_state": "NORMAL", "original_uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "sequence_number": 0}, {"id": "f2649309eb916c5c25bb309e3db061042c3eecca", "name": "01. MC - Rocher", "container_state": "NORMAL", "original_uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "sequence_number": 0}, {"id": "091216b59cad7f1ea815164c26db27e350c54023", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "sequence_number": 0}, {"id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "name": "01. Rocher", "container_state": "NORMAL", "original_uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "sequence_number": 0}, {"id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "name": "01. Ferrero Rocher", "container_state": "NORMAL", "original_uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "sequence_number": 0}, {"id": "93b0968611de11160ed068afeb9930b9965bd5ff", "name": "03. Premium Chocolate", "container_state": "NORMAL", "original_uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "d4d9835db002b9992125246f2abb7117c99ab016", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "d4d9835db002b9992125246f2abb7117c99ab016", "sequence_number": 0}, {"id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "name": "MASTER CAMP FER ROCHER 12.01.2", "container_state": "NORMAL", "original_uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "sequence_number": 0}, {"id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "name": "01. DE - Rocher ", "container_state": "NORMAL", "original_uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "sequence_number": 0}, {"id": "bfbc248a12a4bf0382406620f0d9ec41ff42e35e", "name": "01. Ferrero Rocher", "container_state": "NORMAL", "original_uoi_id": "bfbc248a12a4bf0382406620f0d9ec41ff42e35e", "sequence_number": 0}, {"id": "3d7debea6815ae46c9598191b1c645007666292a", "name": "03 . Premium Chocolate", "container_state": "NORMAL", "original_uoi_id": "3d7debea6815ae46c9598191b1c645007666292a", "sequence_number": 0}, {"id": "c0bb10be2b8f96ee4d27a2dfb7e0d03de68cf114", "name": "DE", "container_state": "NORMAL", "original_uoi_id": "c0bb10be2b8f96ee4d27a2dfb7e0d03de68cf114", "sequence_number": 0}, {"id": "b124e1ed196028bdd0e2c093e28078ca8d9ad462", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "b124e1ed196028bdd0e2c093e28078ca8d9ad462", "sequence_number": 0}, {"id": "68ce80e8c8a30badb82dabfd823886a6fa6fe309", "name": "Y - Geography", "container_state": "NORMAL", "original_uoi_id": "68ce80e8c8a30badb82dabfd823886a6fa6fe309", "sequence_number": 0}], "complete": true, "sequence_number": 2, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "sequence_number": 0}, {"id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "name": "Read Only", "container_state": "NORMAL", "original_uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "sequence_number": 0}, {"id": "23b155c32d5c6142914b41458234c100812bbec8", "name": "Oliver", "container_state": "NORMAL", "original_uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "sequence_number": 0}, {"id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "name": "Z - Exchange", "container_state": "NORMAL", "original_uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}], "creator_id": "1003", "asset_state": "NORMAL", "checked_out": false, "folder_path": "", "content_size": 18093, "content_type": "BITMAP", "content_state": "NORMAL", "date_imported": "2026-01-14T14:23:41.747+01:00", "import_job_id": 225736, "subscribed_to": false, "collection_ids": [], "latest_version": true, "legacy_model_id": 116, "content_editable": true, "import_user_name": "bizAdmin", "date_last_updated": "2026-01-14T14:26:40.677+01:00", "metadata_model_id": "ECOMMERCE", "original_asset_id": "b5e69f3efdd81cd3a604708ed10c55a466d68b0e", "rendition_content": {"preview_content": {"id": "1b3fb8ad25ac04b3ab82c8cbd1653d097e73d19b", "url": "/otmmapi/v6/renditions/1b3fb8ad25ac04b3ab82c8cbd1653d097e73d19b", "name": "download-S.png", "width": 257, "height": 196, "mime_type": "image/png", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "PREVIEW", "content_path": "data\\\\repository\\\\screen\\\\vol0\\\\186\\\\download-S_1b3fb8ad25ac04b3ab82c8cbd1653d097e73d19b.png", "content_size": 127896, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "thumbnail_content": {"id": "378e6172d0245c0bb5e0a7cb599e4fa68a1a8b3e", "url": "/otmmapi/v6/renditions/378e6172d0245c0bb5e0a7cb599e4fa68a1a8b3e", "name": "download-T.png", "width": 257, "height": 196, "mime_type": "image/png", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "THUMBNAIL", "content_path": "data\\\\repository\\\\thumb\\\\vol0\\\\201\\\\download-T_378e6172d0245c0bb5e0a7cb599e4fa68a1a8b3e.png", "content_size": 127896, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_content_info": {"master_content": {"id": "e39e7d38b7abac1f67523cf4e933a2abc03ed232", "url": "/otmmapi/v6/renditions/e39e7d38b7abac1f67523cf4e933a2abc03ed232", "name": "download.jpg", "width": 257, "height": 196, "mime_type": "image/jpeg", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\227\\\\download_e39e7d38b7abac1f67523cf4e933a2abc03ed232.jpg", "content_size": 18093, "unit_of_size": "BYTES", "content_checksum": "170a85265b7055a13a6495204a06bb15", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_state_user_id": "1003", "master_content_info": {"id": "e39e7d38b7abac1f67523cf4e933a2abc03ed232", "url": "/otmmapi/v6/renditions/e39e7d38b7abac1f67523cf4e933a2abc03ed232", "name": "download.jpg", "width": 257, "height": 196, "mime_type": "image/jpeg", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\227\\\\download_e39e7d38b7abac1f67523cf4e933a2abc03ed232.jpg", "content_size": 18093, "unit_of_size": "BYTES", "content_checksum": "170a85265b7055a13a6495204a06bb15", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "delivery_service_url": "https://ppr.dam.ferrero.com/adaptivemedia/rendition?id=b5e69f3efdd81cd3a604708ed10c55a466d68b0e", "product_associations": false, "security_policy_list": [{"id": 1594, "name": "Security Policy_ Default Ecom Upload", "status": "NORMAL", "created_by": "1001", "create_date": "2022-05-24T16:22:28.927+02:00", "description": "Security Policy_ Default Ecom Upload", "ownership_type": "PUBLIC"}, {"id": 5467, "name": "Marketing Viewer", "status": "NORMAL", "created_by": "1003", "create_date": "2023-10-06T16:52:07.297+02:00", "description": "Marketing Viewer", "ownership_type": "PUBLIC"}], "thumbnail_content_id": "378e6172d0245c0bb5e0a7cb599e4fa68a1a8b3e", "content_state_user_id": "1003", "content_state_user_name": "OTMM BusinessAdmin", "asset_lock_state_user_id": "1003", "metadata_state_user_name": "OTMM BusinessAdmin", "access_control_descriptor": {"permissions_map": {"entry": [{"key": "text.securityPolicy.permission.Custom04Permission", "value": true}, {"key": "text.securityPolicy.permission.ContentEditPermission", "value": true}, {"key": "text.securityPolicy.permission.AssetViewPermission", "value": true}, {"key": "text.securityPolicy.permission.ProjectViewPermission", "value": true}, {"key": "text.securityPolicy.permission.MembershipEditPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom03Permission", "value": true}, {"key": "text.securityPolicy.permission.MetaDataEditPermission", "value": true}, {"key": "text.securityPolicy.permission.EditParentsPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom02Permission", "value": true}, {"key": "text.securityPolicy.permission.ExportPermission", "value": true}, {"key": "text.securityPolicy.permission.SummaryViewPermission", "value": true}, {"key": "text.securityPolicy.permission.PreviewViewPermission", "value": true}, {"key": "text.securityPolicy.permission.SubscribePermission", "value": true}, {"key": "text.securityPolicy.permission.DeleteAssetPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom01Permission", "value": true}]}}, "content_lock_state_user_id": "1003", "asset_state_last_update_date": "2026-01-14T14:26:40.677+01:00", "content_lock_state_user_name": "bizAdmin", "metadata_lock_state_user_name": "bizAdmin", "content_state_last_update_date": "2026-01-14T14:23:42.047+01:00", "inherited_metadata_collections": [{"container_id": "d4d9835db002b9992125246f2abb7117c99ab016", "container_name": "05. Final Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "d4d9835db002b9992125246f2abb7117c99ab016", "originator_id": "d4d9835db002b9992125246f2abb7117c99ab016", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "05. Final Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "container_name": "MASTER CAMP FER ROCHER 12.01.2", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "MASTER CAMP FER ROCHER 12.01.2"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000783"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "MASTER_CAMP_FER_ROC_CQ_LG_DE_PRE_0000783"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local comm on global brands"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Master Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Master Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2026/2027"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "B1"}, "display_value": "Master campaign ready for re-mastering", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ADDITIONALAPPROVER", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.LICENSING", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "d0ef653291e269a7d1ddf0ebfedd1c6ad70b1c59"}, "metadata_element": {"id": "FERRERO.FIELD.LICENSING", "name": "Campaign License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "LICENSING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}}]}, {"container_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "container_name": "01. DE - Rocher ", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "bb01cf85444107f22341d2b88421f0cbaade0bf9"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E006"}, "display_value": "GERMANY", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Local DE Editable Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Premium Chocolate Local DE Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "8f497ce53d23899c7c09aa5a7ca69c9f55c3a62d"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E64"}, "display_value": "GERMANY", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "ca70a6d55e4277ecbef2a01a593c614501cbcf74"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "3e9d669ab1047383d0416ba40af75744148c94c8"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0e241fc386dcd91baa31a409e297169fe4a352c2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "2e3e0f2be0e487b540d9b63cb8c0e9ed9c6b1bb6"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "359c98154f230a60acc6b4eb048e129411d7a778"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "b3698893fc223e8371f4e4c0d560d0536c724a09"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "e92f9f10c0c29dda8261218c2c72a0baa66472f2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "15dff42c3b196ba3ae5b3c2ea33f00e347e6f654"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Extended Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0ae044cd9dddf86cd9406c9edc3996b18c430be0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "name": "AMMC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AMMC", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LOCAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "7806fed6127b50c21f6b03e1f7b63f3dedc1e8d1"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "RMMC", "values": [{"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "4c8a2d6e178638bfacfeaf3f7f6f1000304693a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "name": "Product Asset Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Product Asset Approval Ferrero Rocher Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Asset Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCT_ASSET_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local comm on global brands"}, "display_value": "Local comm on global brands", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "5a1ae26558efdc03336c0df838dd9e7c2a51c687"}, "metadata_element": {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "name": "Market Unit", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market Unit", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETUNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "MARKET_UNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "091216b59cad7f1ea815164c26db27e350c54023", "container_name": "EU", "container_type_id": "GEOGRAPHYLOCAL", "container_type_name": "L4 - GEOGRAPHY LOCAL", "inherited_metadata_values": [{"id": "FERRERO.MARKET.FOLDER.GLOBAL", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "4c4d4bf36bf8b1ace55f990e78d6332a9cb20990"}, "metadata_element": {"id": "FERRERO.MARKET.FOLDER.GLOBAL", "name": "Global/Local (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "LOCAL"}, "display_value": "Local", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local (Marketing)", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "GLOBALLOCAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_AREA", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "3dc200c993ab8263952dc6da1498026f615f45dd"}, "metadata_element": {"id": "MARKETING_AREA", "name": "AREA", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E010"}, "display_value": "EUROPE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "AREA", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "AREA", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "AREA", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "dc7749c3e113ec9e0b9e9a3840ea55673ca5e49f"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "f2d658a3829c2ea158ae70a4b4e7928bcf88f8e2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "972d0258a82de85672bd84d8af68cdb67ad3d3ca"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "1212505ad3fe4c9d7458568f3d95aeb4c4e5c37e"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "9d1dfdef55ff7a3eb03552988ddf729c7a0f5107"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "54f006eeb366121a29ee98da33d437615dcd34e0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "1fd8802010e30d44cebb2f3eb090b12ac550f97d"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "8b6e1d8f7dc3c4671cfc11a2914d838ca3ee3f3b"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "be0dc9a87262ee7fd165237b531ba3b7aa93a260"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "2f99f0f0f9e43fb34df9222c8b73a86fb78e473e"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "container_name": "01. Rocher", "container_type_id": "GLOBALBRAND", "container_type_name": "L3 - BRAND", "inherited_metadata_values": [{"id": "FERRERO.TABULAR.NEW.BRAND", "tabular": true, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "9bb1c183135f5240f09132aef59c4ea48c762381"}, "metadata_element": {"id": "FERRERO.TABULAR.NEW.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF04"}, "display_value": "ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND (Marketing)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF04"}, "display_value": "ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "BRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TABULAR_BRAND", "column_name": "BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.NEW.BRAND", "parent_table_name": "BRAND (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "tabular": true, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "a37b13c02cba799378211e17b73234a0d836f9b6"}, "metadata_element": {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "CQ"}, "display_value": "FERRERO ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND(HARMONIZED)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "CQ"}, "display_value": "FERRERO ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.HARMONIZEDBRAND", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_HARMONIZEDBRAND", "column_name": "HARMONIZEDBRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.HARMONIZEDBRAND", "parent_table_name": "BRAND(HARMONIZED)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "AGENCY.COLLABORATION", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "183d6e0957a9940f9b18ef44f46d957802b63397"}, "metadata_element": {"id": "AGENCY.COLLABORATION", "name": "Agency collaboration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency collaboration", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "AGENCY_COLLABORATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "AGENCY.SHARING", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "d0e2b725ddfdc452cc3ba750bbe8ec059c6b01ba"}, "metadata_element": {"id": "AGENCY.SHARING", "name": "Agency sharing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency sharing", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "AGENCY_SHARING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "CONTENT.SCALING.AGENCYNAME", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "f9dfa695cc5ef8cd3fafada4e44cfdaa1522d58a"}, "metadata_element": {"id": "CONTENT.SCALING.AGENCYNAME", "name": "Content Scaling agency name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Scaling agency name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENTSCALING_AGENCYNAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "container_name": "01. Ferrero Rocher", "container_type_id": "GLOBALSUBCATEGORY", "container_type_name": "L2 - SUBCATEGORY", "inherited_metadata_values": [{"id": "MARKETING_SUBCATEGORY", "tabular": false, "value_id": {"uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "originator_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "inherited_field_id": "3000ad591e09b5c75f85fc2ccbb9ebeb31b3ab78"}, "metadata_element": {"id": "MARKETING_SUBCATEGORY", "name": "SUBCATEGORY", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Mart-Ferrero-Rocher"}, "display_value": "Ferrero Rocher", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "SUBCATEGORY", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "SUBCATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "SUBCATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "tabular": true, "value_id": {"uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "originator_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "inherited_field_id": "2c751ce760d88c0e271925ea5149348106944bfa"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Subcategory Owner", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_SUBCATEGORY_OWNER_TM", "column_name": "SUBCATEGORY_OWNER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "parent_table_name": "Subcategory Owner", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "container_name": "03. Premium Chocolate", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "originator_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E06"}, "display_value": "PREMIUM CHOCOLATE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "originator_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final Approver BPS ", "values": [{"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "container_name": "00. Master Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "originator_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00. Master Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "container_name": "LOCADAPLOCCOMM - FER ROCHER 4", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "LOCADAPLOCCOMM - FER ROCHER 4"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000794"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "LOCADAPLOCCOMM_-__CQ_LAL_MLT_PRE_0000794"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local adaptation of local comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Master Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000783"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Master Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "DK"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "DK"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "SE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "FI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "NO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "IS"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "GL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2025/2026"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2797"}, "display_value": "Owner, Asset (AssetownerLoG, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2797"}, "display_value": "Owner, Asset (AssetownerLoG, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2797"}, "display_value": "Owner, Asset (AssetownerLoG, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2797"}, "display_value": "Owner, Asset (AssetownerLoG, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "A2"}, "display_value": "Selected Master Assets sent to Agency", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ADDITIONALAPPROVER", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.LICENSING", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "d0ef653291e269a7d1ddf0ebfedd1c6ad70b1c59"}, "metadata_element": {"id": "FERRERO.FIELD.LICENSING", "name": "Campaign License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "LICENSING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}}]}, {"container_id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "container_name": "25-26", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "originator_id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "25-26"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "container_name": "02. Campaign", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "originator_id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "02. Campaign"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "f31042cfc487f066486c46527c076b8ee6618ceb", "container_name": "01. Standard", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "f31042cfc487f066486c46527c076b8ee6618ceb", "originator_id": "f31042cfc487f066486c46527c076b8ee6618ceb", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "01. Standard"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "container_name": "02. Sweden", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "originator_id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "02. Sweden"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "container_name": "SCANDINAVIA", "container_type_id": "GLOBALMARKETUNIT", "container_type_name": "L6 - MARKET UNIT", "inherited_metadata_values": [{"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "24a6615bcce9adc5a098c76c29b8e8baba61a9a3"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E22"}, "display_value": "SCANDINAVIA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "13063087b81ea172db42e69ed8e8fa013cd5bfe0"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Local SCANDINAVIA Editable Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "bf49ba2a40d0d0dccee4d5de7381659b106dd89a"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Premium Chocolate Local SCANDINAVIA Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "8e4d311466783d8215a38b08bee3cb2b3bfcf40f"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "9e88b5726590ab30642999a28a301e3fbcebc762"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "name": "Published Security Policy - Restricted Visibility", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Security Policy - Restricted Visibility", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_VISIBILITY_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "3c0070e420882e3e18f6097811cb60a67239003b"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local SCANDINAVIA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "7f3c1933b61e900457ea6e2aab750303882873d4"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "b0c960759e48c0fcdcb650417179a614da95e866"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Local SCANDINAVIA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "6f603fcc63415e266dc35cf2314d31357a2966bf"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "3c12728b06ecfafeeb74482ea7b7296b180765f9"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "dc9b8ffa0591a1b2956c07fa5dc10ff477c84f4e"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "495fa4f08769a021cfa907dfb7a903fade9bd19a"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "e3b647e172a89e1e7cbdd2964faff1bca8dcf520"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "6870cca056b54cd400a9fbd4fe75513e69cedcdd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "RMMC", "values": [{"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "container_name": "01. MC - Rocher", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "bb01cf85444107f22341d2b88421f0cbaade0bf9"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E023"}, "display_value": "MULTI COUNTRY EUROPE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "8f497ce53d23899c7c09aa5a7ca69c9f55c3a62d"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E22"}, "display_value": "SCANDINAVIA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "ca70a6d55e4277ecbef2a01a593c614501cbcf74"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "3e9d669ab1047383d0416ba40af75744148c94c8"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "0e241fc386dcd91baa31a409e297169fe4a352c2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "2e3e0f2be0e487b540d9b63cb8c0e9ed9c6b1bb6"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "359c98154f230a60acc6b4eb048e129411d7a778"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "b3698893fc223e8371f4e4c0d560d0536c724a09"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "e92f9f10c0c29dda8261218c2c72a0baa66472f2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "15dff42c3b196ba3ae5b3c2ea33f00e347e6f654"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "0ae044cd9dddf86cd9406c9edc3996b18c430be0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "name": "AMMC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AMMC", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LOCAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "7806fed6127b50c21f6b03e1f7b63f3dedc1e8d1"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "RMMC", "values": [{"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "4c8a2d6e178638bfacfeaf3f7f6f1000304693a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "name": "Product Asset Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Asset Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCT_ASSET_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of local comm"}, "display_value": "Local adaptation of local comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of local comm"}, "display_value": "Local adaptation of local comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "5a1ae26558efdc03336c0df838dd9e7c2a51c687"}, "metadata_element": {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "name": "Market Unit", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market Unit", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETUNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "MARKET_UNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "container_name": "Read Only", "container_type_id": "L3 - Agency Structure", "container_type_name": "L3 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "55530f721f18c847e35d7c828edf53461b5014b0"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "330bb6f68316aab5c45f9fe34e047cce573c67cc"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "name": "Agency Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "AGENCY_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "e30e90d694f9935d4c15c4c78891beed8853a272"}, "metadata_element": {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "name": "Published Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "PUBLISHED_ASSET_SP_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "23b155c32d5c6142914b41458234c100812bbec8", "container_name": "Oliver", "container_type_id": "L2 - Agency Structure", "container_type_name": "L2 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.AGENCY", "tabular": false, "value_id": {"uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "originator_id": "23b155c32d5c6142914b41458234c100812bbec8", "inherited_field_id": "48fcbc397986aca5bb8722a95197dd0a46f19b4e"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_AGENCY", "column_name": "AGENCY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "container_name": "Z - Exchange", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "YY"}, "display_value": "AGENCIES", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Final Approver BPS ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}], "asset_lock_state_last_update_date": "2026-01-14T14:27:01.9+01:00", "content_lock_state_last_update_date": "2026-01-14T14:23:42.103+01:00"} \N \N active f \N \N 2026-01-16 20:54:45.211417 2026-01-16 20:54:45.211417 2026-01-16 20:54:45.211417 20 M7oXC5 85a99b184653d78906eccc8934a67e5ed4bcd9e9 images .jpg \N image/jpeg \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N d4d9835db002b9992125246f2abb7117c99ab016 Box File ID: 2105216970909\nBox URL: https://app.box.com/file/2105216970909\nDAM Asset ID: 85a99b184653d78906eccc8934a67e5ed4bcd9e9 {"name": "images.jpg", "links": {"links": [], "source_id": "85a99b184653d78906eccc8934a67e5ed4bcd9e9"}, "locked": false, "deleted": false, "expired": false, "version": 1, "asset_id": "85a99b184653d78906eccc8934a67e5ed4bcd9e9", "metadata": {"id": "ECOMMERCE", "name": "Marketing Asset", "type": "com.artesia.metadata.MetadataModel", "legacy_id": 116, "metadata_element_list": [{"id": "FERRERO.CATEGORY.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200054, "metadata_element_list": [{"id": "FERRERO.FIELD.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Status", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.CONTENT_STATUS", "edit_type": "COMBO_NOTNULL", "facetable": false, "searchable": true, "table_name": "FERRERO_CONTENT_STATUS_MD", "column_name": "CONTENT_STATUS", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9215, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRER.CATEGORY.ASSET_INFO", "name": "Asset Info", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200022, "metadata_element_list": [{"id": "FERRERO.FIELD.MKTG.ASSET TYPE", "name": "Asset Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.ASSETTYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.FISCAL YEAR", "name": "Release Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2026/2027"}, "display_value": "2026/2027", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Release Fiscal Year", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_DOMAIN_FISCAL_YEAR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "FISCAL__YEAR", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "name": "Main Languages", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1210, "metadata_element_list": [{"id": "MAIN_LANGUAGES", "name": "MAIN LANGUAGES", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "MAIN LANGUAGES", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MAIN LAGUAGES_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MAIN_LANGUAGE_TABLE", "column_name": "MAIN_LANGUAGE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "parent_table_name": "Main Languages", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.ASSET DESCRIPTION", "name": "Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Description", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "DESCR", "data_length": 249, "description": "Descriptive information", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.FLAVOUR", "name": "Flavour", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Flavour", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.FLAVOUR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FLAVOUR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.SIZE", "name": "Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Size", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.SIZE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SIZE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1241, "metadata_element_list": [{"id": "FERRERO.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Compliance", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ASSETCOMPLIANCE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_COMPLIANCE", "column_name": "ASSET_COMPLIANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "parent_table_name": "Asset Compliance", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.TAG DETAILS", "name": "Tag Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 118, "metadata_element_list": [{"id": "ARTESIA.FIELD.TAG", "name": "Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "food", "field_value": {"type": "string", "value": "food"}, "display_value": "food", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Tag", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "food", "field_value": {"type": "string", "value": "food"}, "display_value": "food", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "slot machine", "field_value": {"type": "string", "value": "slot machine"}, "display_value": "slot machine", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.TAGS", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "OTMM_TAGS", "column_name": "TAG", "data_length": 80, "description": "Tag", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG CONFIDENCE", "name": "Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 83.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Confidence", "values": [{"value": {"type": "decimal", "value": 83.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 72.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Confidence", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG TYPE", "name": "Tag Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Tag Type", "values": [{"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "AI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "TAG_TYPE", "data_length": 10, "description": "Tag Type", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED BY", "name": "Associated By", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Associated By", "values": [{"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "1003"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_BY", "data_length": 10, "description": "Associated By", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED DATE", "name": "Associated Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-14T14:24:31.323+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Associated Date", "values": [{"value": {"type": "dateTime", "value": "2026-01-14T14:24:31.323+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "dateTime", "value": "2026-01-14T14:24:31.323+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_DATE", "data_length": 10, "description": "Associated Date", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.STATE", "name": "Global/Local", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "GLOBAL"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO_NOTNULL", "facetable": true, "searchable": true, "table_name": "FERRERO_IC_ASSET_DETAILS", "column_name": "ASSET_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.ASPECT RATIO", "name": "Aspect Ratio (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio (Marketing)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASPECT_RATIO", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASPECT_RATIO", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "name": "Tag (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1222, "metadata_element_list": [{"id": "MARKETING_TAG", "name": "Marketing Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Marketing Tag", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.DOMAIN.TAG", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TAG_MARKET", "column_name": "TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "parent_table_name": "Tag (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.TAGS", "name": "Auto-Generated Tags", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Auto-Generated Tags", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "AUTO_GENERATED_TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CERTIFIER", "name": "Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approver", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.MARKETING.FIELD.APPROVAL DATE", "name": "Approval__Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approval__Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.LEGAL APPROVAL DATE", "name": "Legal Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CERTIFIER", "name": "IA&CC Certifier", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Certifier", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CC APPROVAL DATE", "name": "IA&CC Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "name": "Extended Approval", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1230, "metadata_element_list": [{"id": "FERRERO.FIELD.EXTENDED.APPROVAL", "name": "Extended Approval required by:", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended Approval required by:", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COMMENTS", "name": "Comment", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comment", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "COMMENTS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.DATE", "name": "Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USERS", "name": "User ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "User ID", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "USERS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXTENDED.JOBID", "name": "Extended JobID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended JobID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.MIGRATION.INDEX", "name": "Migration Index", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Migration Index", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MIGRATION.INDEX", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MIGRATION_INDEX", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "FERRERO_MARKET_MARKETING_CREATOR", "name": "Marketing Creator", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Marketing Creator", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.CREATOR", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MARKETING_CREATOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "ARTESIA.FIELD.IS LATEST VERSION", "name": "Is Latest Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Y"}, "display_value": "Yes", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Is Latest Version", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.YES_NO", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "IS_LATEST_VERSION", "data_length": 1, "description": "Is this the latest version? (Y/N)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET VERSION", "name": "Asset Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 1}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Version", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "INTEGER", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "VERSION", "data_length": 12, "description": "Version number of asset", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET_ID", "name": "Asset ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "85a99b184653d78906eccc8934a67e5ed4bcd9e9"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset ID", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "LOGICAL_UOI_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.ECOMMERCE STATUS", "name": "Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "PUBLISHED"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Status", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "ASSET_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CREATOR", "name": "Uploaded by", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Uploaded by", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_USER_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.FIELD.CREATION DATE", "name": "Upload Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-14T14:23:41.743+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Upload Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_DT", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.ASSET NAME", "name": "Asset Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "images.jpg"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Name", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "description": "Original name of master object", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.CONTENT TYPE", "name": "Content Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "BITMAP"}, "display_value": "Image", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Type", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.CONTENT_TYPES", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "CONTENT_TYPE", "data_length": 8, "description": "Content Type", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.MIME TYPE", "name": "File Extension", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "image/jpeg"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Extension", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_MIME_TYPE", "data_length": 80, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.FILE.SIZE", "name": "File Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "long", "value": 11710}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Size", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "LONG", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_SIZE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP RESOLUTION", "name": "Bitmap Resolution", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 72}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Resolution", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_RESOLUTION", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP WIDTH", "name": "Bitmap Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 225}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Width", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_WIDTH", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP HEIGHT", "name": "Bitmap Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 225}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Height", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_HEIGHT", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "name": "Approval Metadata", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1249, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.DEPARTMENT", "name": "Department", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Department", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "DEPARTMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.CERTIFIER", "name": "Certifier", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Certifier", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL DATE", "name": "Approval Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Approval Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "APPROVAL_DATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.COMMENT", "name": "Comments", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comments", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "COMMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.TYPE OF APPROVAL", "name": "Type of Approval", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Approval", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "TYPE_OF_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL STATUS", "name": "Approval Status", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Approval Status", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "APPROVAL_STATUS", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.SUB JOBID", "name": "Sub Job Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sub Job Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.VIDEO.BIT_RATE", "name": "Bitrate", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitrate", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "BIT_RATE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.EMBEDDED.FIELD.DURATION", "name": "Duration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Duration", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "DURATION_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.ASPECT RATIO", "name": "Aspect Ratio", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "ASPECT_RATIO", "data_length": 30, "displayable": false, "instructions": "ASPECT_RATIO", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME HEIGHT", "name": "Frame Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Height", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_HEIGHT", "data_length": 12, "displayable": true, "instructions": "FRAME_HEIGHT", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME WIDTH", "name": "Frame Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Width", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_WIDTH", "data_length": 12, "displayable": true, "instructions": "FRAME_WIDTH", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.ASPECT.RATIO.POC", "name": "Aspect Ratio(POC)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "1:1"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio(POC)", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASPECT_RATIO_TABLE", "column_name": "ASPECT_RATIO", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "PRODUCT.DETAILS", "name": "Product Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200029, "metadata_element_list": [{"id": "FERRERO.TABLE.EANCODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1208, "metadata_element_list": [{"id": "EAN_CODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "EAN CODE/ 77 CODE", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "EAN.CODE", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "EAN_CODE", "column_name": "EAN_CODE_DESCRIPTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "COUNTRY", "name": "COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "EAN_CODE", "column_name": "COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKETING.ADVANCE.PRODUCT.LINK", "name": "Asset-to-product relation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset-to-product relation", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_MARKETING_ADVANCE_PRODUCT_LINK", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ADVANCE_PRODUCT_LINK", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 10182, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.SUB BRAND", "name": "Sub-Brands", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Sub-Brands", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.SUBBRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "SUB_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT WEIGHT", "name": "Product Weight", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Weight", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_WEIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.CONSUMER UNIT PACKAGING", "name": "Consumer Unit Packaging", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Consumer Unit Packaging", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PACK", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "CONSUMER_UNIT_PACKAGING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.4 DIGIT CODE", "name": "4 Digit Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "4 Digit Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "DIGITCODE", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERREO.ECOM.RETAILER_SPECIFIC_FIELD", "name": "Retailer Specific", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Retailer Specific", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "RETAILER_SPECIFIC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "cascading_group_id": "FERRERO.RETAILER.SPECIFIC", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY START PERIOD", "name": "Asset validity start period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity start period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_STARTING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY END PERIOD", "name": "Asset validity end period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity end period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_ENDING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.ASSET.NAMING.CONVENTION", "name": "Does asset need GS1 naming convention", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Does asset need GS1 naming convention", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASSETNAMINGCONVENTION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_NAMING_CONVENTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9515, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT VIEW", "name": "Product View", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product View", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT VIEW", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_VIEW", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT ANGLE", "name": "Product Angle", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Angle", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT.ANGLE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_ANGLE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT STATE", "name": "Product State", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product State", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT STATE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PROMOTION ID", "name": "Promo ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Promo ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROMO_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.BUSINESS.ASSET TYPE", "name": "Asset Type (eDAM)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Angled view", "field_value": {"type": "string", "value": "angledview"}, "display_value": "ANGLED VIEW", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Type (eDAM)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "OTMM.DOMAIN.OTMM_ASSETTYPE_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_BUSINESS_INFO", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7244, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200048, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.AGENCY NAME", "name": "Agency Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "0000000001"}, "display_value": "ATest", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Agency Name", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.AGENCY_NAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AGENCY_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7336, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.CREATIX", "name": "CreativeX", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200059, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.CREATIVEX", "name": "Confidence", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1245, "metadata_element_list": [{"id": "FERRERO.TAB.FIELD.CREATIVEX", "name": "Platform > Rating (%)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Platform > Rating (%)", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_CREATIVEX", "column_name": "CREATIVEX_NEW", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CREATIVEX", "parent_table_name": "Confidence", "cascading_group_id": "FERRERO.CREATIVEX.CHAR", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.CREATIVEX LINK", "name": "CreativeX Hyperlink", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "CreativeX Hyperlink", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_CREATIVEX", "column_name": "CREATIVE_LINK", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.IP_RIGHTS", "name": "IP Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200046, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.IPRIGHT", "name": "IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IP Rights", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.IPRIGHTS", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IP_RIGHTS", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.BUYOUT", "name": "Touchpoint Scope", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Touchpoint Scope", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.TOTAL_BUYOUT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TOTAL_BUYOUT", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.FERRERO PROPERTY", "name": "Ferrero Property", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Ferrero Property", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.FERRERO_PROPERTY", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FERRERO_PROPERTY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200035, "metadata_element_list": [{"id": "FERRERO.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1209, "metadata_element_list": [{"id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "name": "IP Coverage, Area, Region & Market Unit", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Coverage, Area, Region & Market Unit", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "IPCOVERAGE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "cascading_group_id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHT TYPE", "name": "Copyright Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHT_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.MEDIATYPE", "name": "Media Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Media Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MEDIA_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "MEDIA_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE FROM", "name": "Expiration of Usage - From", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - From", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_FROM", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE TO", "name": "Expiration of Usage - To", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - To", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_TO", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO._DURATION", "name": "IP Duration", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Duration", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "ECOM_DURATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHTTYPE DETAILS", "name": "Copyright Type Details", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type Details", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHTTYPE_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 6, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.MARKET.VID_STAT_RIGHT", "name": "Video & Static Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200047, "metadata_element_list": [{"id": "FERRERO.MARKET.VID_N_STAT", "name": "Video and Static Right", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video and Static Right", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VID_AND_STAT_RIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.VID_STAT_TYPE", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1221, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.TYPE_VID", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Video & Static Right", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TYPE_VID_STAT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_MARKET_TYPE_VID_STAT", "column_name": "TYPE_OF_VIDEO_STATIC_RIGHT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.VID_STAT_TYPE", "parent_table_name": "Type of Video & Static Right", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKET.PROD_COMPANY", "name": "Production House", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Production House", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.PRODUCT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200050, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.LICENSIN", "name": "Licensing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Licensing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSING", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "cascading_group_id": "FERRERO.MARKET.CG.LICENSE", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.SPOT_DETAILS", "name": "Spot Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200049, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.SPOT_VERSION", "name": "Spot Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Version", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_VERSION", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_VERSION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.SPOT_TYPE", "name": "Spot Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_TYPE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.DIRECTOR_NAME", "name": "Director Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Director Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "DIRECTOR_NAME", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VIDEO_POST_PROD_COMPANY", "name": "Video Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VID_POST_PROD_CONTACT", "name": "Video Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_COMPANY", "name": "Audio Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_CONTACT", "name": "Audio Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.BROADCASTER.CODE", "name": "Broadcaster Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Broadcaster Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BROADCASTER_CODE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.TECHNICAL_VALIDATION", "name": "Technical Validation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Technical Validation", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TECHNICAL_VALIDATION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS", "name": "Media Analysis", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1002, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "name": "Categories", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 105, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY NAME", "name": "Category Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "others_"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Category Name", "values": [{"value": {"type": "string", "value": "others_"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "outdoor_"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "text_menu"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "NAME", "data_length": 100, "description": "Category Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY CONFIDENCE", "name": "Category Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"value": {"type": "decimal", "value": 3.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Category Confidence", "values": [{"value": {"type": "decimal", "value": 3.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 0.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "decimal", "value": 26.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "CONFIDENCE", "data_length": 10, "description": "Category Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES COUNT", "name": "Faces Count", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Faces Count", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACECOUNT", "column_name": "COUNT", "data_length": 10, "description": "Faces Count", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "name": "Face Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 106, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME", "name": "Recognized Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME", "data_length": 2000, "description": "Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME CONFIDENCE", "name": "Recognized Name Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME_CONFIDENCE", "data_length": 10, "description": "Name Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE", "name": "Person Age", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE", "data_length": 10, "description": "Person Age", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE CONFIDENCE", "name": "Person Age Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Person Age Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_CONFIDENCE", "data_length": 10, "description": "Person Age Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER", "name": "Gender", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Gender", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.GENDER", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER", "data_length": 40, "description": "Gender", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER CONFIDENCE", "name": "Gender Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Gender Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER_CONFIDENCE", "data_length": 10, "description": "Gender Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.FACE COORDS", "name": "Face Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "FACE_COORDS", "data_length": 200, "description": "Face Coordinates like postion, height,width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE GROUP", "name": "Person Age Group", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age Group", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.AGE GROUP", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_GROUP", "data_length": 10, "description": "Person Age Group", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "name": "Safe Content", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 107, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONTENT TYPE", "name": "Safe Content Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Safe Content Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENTS", "data_length": 20, "description": "Safe Content Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONFIDENCE", "name": "Content Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Content Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENT_CONFIDENCE", "data_length": 10, "description": "Safe Content Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "name": "Colors", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 108, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.NAME", "name": "Color", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Brown"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Color", "values": [{"value": {"type": "string", "value": "Brown"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "Black"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "NAME", "data_length": 25, "description": "COLOR", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.PROPORTION", "name": "Color Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Color Confidence", "values": [{"is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "PROPORTION", "data_length": 10, "description": "Proportion", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.FOREGROUND", "name": "Foreground Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Brown"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Foreground Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "FOREGROUND", "data_length": 25, "description": "Foreground Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.BACKGROUND", "name": "Background Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Black"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Background Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "BACKGROUND", "data_length": 25, "description": "Background Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.ISBW", "name": "Is Black and White", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "false"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Is Black and White", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "ISBW", "data_length": 10, "description": "Is Black and White", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "name": "Captions", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 109, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION TEXT", "name": "Caption Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Caption Text", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "TEXT", "data_length": 2000, "description": "Caption Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION CONFIDENCE", "name": "Caption Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Caption Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "CAPTION_CONFIDENCE", "data_length": 10, "description": "Caption Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "name": "Image Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 110, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.IMAGE TYPE", "name": "Analysis Image Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Analysis Image Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_IMAGE_TYPE", "column_name": "TYPE", "data_length": 100, "description": "Image Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "parent_table_name": "Image Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.DATE", "name": "Date: Media Analysis", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-14T14:24:31+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date: Media Analysis", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MEDIA_ANALYSIS_DATE", "data_length": 25, "description": "Date Media Analysis was done on the asset.", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR LANGUAGE", "name": "Image Text Language", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "unk"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Image Text Language", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "LANGUAGE", "data_length": 10, "description": "OCR data language", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR TEXT", "name": "Text on Image", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Text on Image", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "TEXT", "data_length": 4000, "description": "OCR Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "name": "Embedded Brand Info", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 119, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.NAME", "name": "Embedded Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Embedded Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Embedded Brand Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.CONFIDENCE", "name": "Embedded Brand Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Embedded Brand Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Embedded Brand Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.COORDINATES", "name": "Embedded Brand Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Embedded Brand Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "COORDINATES", "data_length": 200, "description": "Embedded Brand Coordinates like position, height, width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "HYBRIS.PRODUCT.INFO", "name": "PIM Item Reference", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200027, "metadata_element_list": [{"id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "name": "Hybris Item Reference", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1206, "metadata_element_list": [{"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ID", "name": "Hybris Item ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ID", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT TAG NAME", "name": "Hybris Assignment Label", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Assignment Label", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_TAG_NAME", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ATTRIBUTE NAME", "name": "Hybris Attribute Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Attribute Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ATTRIBUTE_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT CATALOG NAME", "name": "Hybris Catalog Mnemonic", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Catalog Mnemonic", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_CATALOG_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT PK", "name": "Hybris Item PK", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item PK", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_PK", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.SYSTEM ID", "name": "Hybris System ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris System ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "SYSTEM_ID", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.ASSIGNED", "name": "Assigned", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Assigned", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "ASSIGNED", "column_name": "ASSIGNED", "data_length": 38, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PIM TYPE", "name": "PIM Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "PIM Type", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_PIM_TYPE", "column_name": "PIM_TYPE", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS VIDEO", "name": "Media Analysis Video", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1003, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "name": "Labels", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 113, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.ID", "name": "Label Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "ID", "data_length": 40, "description": "Label Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.NAME", "name": "Label Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "NAME", "data_length": 40, "description": "Label Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.APPEARANCES", "name": "Label Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Label Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "APPEARANCES", "data_length": 0, "description": "Label Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "name": "Sentiments", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 114, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.ID", "name": "Sentiment Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "ID", "data_length": 40, "description": "Sentiment Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.NAME", "name": "Sentiment Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "NAME", "data_length": 40, "description": "Sentiment Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.APPEARANCES", "name": "Sentiment Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "APPEARANCES", "data_length": 0, "description": "Sentiment Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.SEEN.DURATION.RATIO", "name": "Sentiment Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Sentiment Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "name": "Keywords", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 115, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.ID", "name": "Keyword Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "ID", "data_length": 40, "description": "Keyword Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.NAME", "name": "Keyword Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "NAME", "data_length": 40, "description": "Keyword Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.APPEARANCES", "name": "Keyword Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Keyword Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "name": "Faces", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 111, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.ID", "name": "Face Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "ID", "data_length": 40, "description": "Face Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.NAME", "name": "Face Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "NAME", "data_length": 40, "description": "Face Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.TITLE", "name": "Face Title", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Title", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "TITLE", "data_length": 249, "description": "Face Title", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.DESCRIPTION", "name": "Face Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Face Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.APPEARANCES", "name": "Face Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "APPEARANCES", "data_length": 0, "description": "Face Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SPEAKER.FACE.ID", "name": "Video Speaker Object Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Speaker Object Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "THUMBNAIL_OBJECT_ID", "data_length": 40, "description": "Video Speaker Object Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.SEEN.DURATION.RATIO", "name": "Face Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "SEEN_DURATION_RATIO", "data_length": 20, "description": "Face Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "name": "Brands", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 112, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.ID", "name": "Video Brand Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "ID", "data_length": 40, "description": "Brand Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.NAME", "name": "Video Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Brand Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.DESCRIPTION", "name": "Video Brand Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Brand Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.WIKIURL", "name": "Video Brand Wiki URL", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Wiki URL", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "WIKIURL", "data_length": 200, "description": "Brand Wiki URL", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.APPEARANCES", "name": "Video Brand Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Brand Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.SEEN.DURATION.RATIO", "name": "Video Brand Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Brand Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "name": "Speeches", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 116, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.ID", "name": "SpeechText Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "SpeechText Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "ID", "data_length": 40, "description": "SpeechText Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXT", "name": "Speech Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Text", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXT", "data_length": 1000, "description": "Speech Text", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXTTYPE", "name": "Speech Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXTTYPE", "data_length": 40, "description": "Speech Type", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.START TIME", "name": "Speech Start Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech Start Time", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "START_TIME", "data_length": 40, "description": "Speech Start Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.END TIME", "name": "Speech End Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speech End Time", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "END_TIME", "data_length": 40, "description": "Speech End Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "name": "Speakers", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 122, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.ID", "name": "Speaker Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "ID", "data_length": 40, "description": "Speaker Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.NAME", "name": "Speaker Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "NAME", "data_length": 100, "description": "Speaker Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.APPEARANCES", "name": "Speaker Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "APPEARANCES", "data_length": 0, "description": "Speaker Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.FIELDGROUP.LOCALASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200057, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1239, "metadata_element_list": [{"id": "FERRERO.FIELD.COUNTRY", "name": "LOCAL COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "LOCAL COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USER", "name": "USER", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "USER", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_USER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.ASSOCIATION", "name": "TYPE OF ASSOCIATION", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "TYPE OF ASSOCIATION", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_ASSOCIATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.VALUE", "name": "VALUE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "VALUE", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_VALUE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "CG.CATEGORY.FADEL ASSET INFORMATION", "name": "Rights Asset Information", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200064, "metadata_element_list": [{"id": "CG.FIELD.RIGHTS MANAGED", "name": "Fadel IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fadel IP Rights", "enabled": true, "options": "", "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_RIGHTS_MANAGED_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGED", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.NEEDS RIGHTS MANAGEMENT", "name": "Needs Rights Management", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "10", "field_value": {"type": "string", "value": "N"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Needs Rights Management", "enabled": true, "options": "", "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_NEEDS_RIGHTS_MANAGEMENT_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "NEEDS_RIGHTS_MANAGEMENT", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.RIGHTS MANAGEMENT DESCRIPTION", "name": "Rights Management Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Rights Management Description", "enabled": true, "options": "", "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGEMENT_DESCRIPTION", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.RIGHTS MANAGEMENT STATUS", "name": "Rights Management Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Rights Management Status", "enabled": true, "options": "", "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_RIGHTS_MANAGEMENT_STATUS_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGEMENT_STATUS", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.FORCE SYNC", "name": "Force Sync", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Force Sync", "enabled": true, "options": "", "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_FORCE_SYNC_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "FORCE_SYNC", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.LAST SYNC TIME", "name": "Date of last data sync", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date of last data sync", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "LAST_SYNC_TIME", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "CG.CATEGORY.FADEL RIGHTS INFORMATION", "name": "Rights Information", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200065, "metadata_element_list": [{"id": "CG.TABLE.RIGHTS", "name": "Rights", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1256, "metadata_element_list": [{"id": "CG.FIELD.RIGHT TERRITORIES", "name": "Territory", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Territory", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "TERRITORY", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT USES", "name": "Use", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Use", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "USAGE", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT IN DATE", "name": "In Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "In Date", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "IN_DATE", "data_length": 10, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT OUT DATE", "name": "Out Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Out Date", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "OUT_DATE", "data_length": 10, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "saved_values_behavior_mode": 0}]}]}, {"id": "CG.CATEGORY.FADEL AGREEMENTS AND PARTIES", "name": "Agreements and Parties", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200067, "metadata_element_list": [{"id": "CG.TABLE.PARTIES.AGREEMENTS VW", "name": "Customized Table Parties and Agreements", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1258, "metadata_element_list": [{"id": "CG.FIELD.AGREEMENT NUMBER VW", "name": "Agreement Number ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Number ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_NUMBER", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT DESCRIPTION VW", "name": "Agreement Description ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Description ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_DESCRIPTION", "data_length": 2000, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT START DATE VW", "name": "Agreement Start Date ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Start Date ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_START_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT END DATE VW", "name": "Agreement End Date ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement End Date ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_END_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY NAME VW", "name": "Party Name ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Name ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_NAME", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY ROLE VW", "name": "Party Role ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Role ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_ROLE", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY EMAIL ADDRESS VW", "name": "Party Email Address ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Email Address ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_EMAIL_ADDRESS", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY PHONE NUMBER VW", "name": "Party Phone Number ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Phone Number ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_PHONE_NUMBER", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PRIMARY PARTY CONTACT VW", "name": "Primary Party Contact ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Primary Party Contact ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PRIMARY_PARTY_CONTACT", "data_length": 200, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 8, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}], "has_multilingual_fields": false}, "mime_type": "image/jpeg", "path_list": [{"parents": [{"id": "d4d9835db002b9992125246f2abb7117c99ab016", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "d4d9835db002b9992125246f2abb7117c99ab016", "sequence_number": 0}, {"id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "name": "MASTER CAMP FER ROCHER 12.01.2", "container_state": "NORMAL", "original_uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "sequence_number": 0}, {"id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "name": "01. DE - Rocher ", "container_state": "NORMAL", "original_uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "sequence_number": 0}, {"id": "091216b59cad7f1ea815164c26db27e350c54023", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "sequence_number": 0}, {"id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "name": "01. Rocher", "container_state": "NORMAL", "original_uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "sequence_number": 0}, {"id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "name": "01. Ferrero Rocher", "container_state": "NORMAL", "original_uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "sequence_number": 0}, {"id": "93b0968611de11160ed068afeb9930b9965bd5ff", "name": "03. Premium Chocolate", "container_state": "NORMAL", "original_uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "sequence_number": 0}], "complete": true, "sequence_number": 1, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "sequence_number": 0}, {"id": "4b05a895330aa2fb6046f59731aba5dd93858431", "name": "LOCADAPLOCCOMM - FER ROCHER 4", "container_state": "NORMAL", "original_uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "sequence_number": 0}, {"id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "name": "25-26", "container_state": "NORMAL", "original_uoi_id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "sequence_number": 0}, {"id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "name": "02. Campaign", "container_state": "NORMAL", "original_uoi_id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "sequence_number": 0}, {"id": "f31042cfc487f066486c46527c076b8ee6618ceb", "name": "01. Standard", "container_state": "NORMAL", "original_uoi_id": "f31042cfc487f066486c46527c076b8ee6618ceb", "sequence_number": 0}, {"id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "name": "02. Sweden", "container_state": "NORMAL", "original_uoi_id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "sequence_number": 0}, {"id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "name": "SCANDINAVIA", "container_state": "NORMAL", "original_uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "sequence_number": 0}, {"id": "f2649309eb916c5c25bb309e3db061042c3eecca", "name": "01. MC - Rocher", "container_state": "NORMAL", "original_uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "sequence_number": 0}, {"id": "091216b59cad7f1ea815164c26db27e350c54023", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "sequence_number": 0}, {"id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "name": "01. Rocher", "container_state": "NORMAL", "original_uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "sequence_number": 0}, {"id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "name": "01. Ferrero Rocher", "container_state": "NORMAL", "original_uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "sequence_number": 0}, {"id": "93b0968611de11160ed068afeb9930b9965bd5ff", "name": "03. Premium Chocolate", "container_state": "NORMAL", "original_uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "sequence_number": 0}], "complete": true, "sequence_number": 1, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "d4d9835db002b9992125246f2abb7117c99ab016", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "d4d9835db002b9992125246f2abb7117c99ab016", "sequence_number": 0}, {"id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "name": "MASTER CAMP FER ROCHER 12.01.2", "container_state": "NORMAL", "original_uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "sequence_number": 0}, {"id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "name": "01. DE - Rocher ", "container_state": "NORMAL", "original_uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "sequence_number": 0}, {"id": "bfbc248a12a4bf0382406620f0d9ec41ff42e35e", "name": "01. Ferrero Rocher", "container_state": "NORMAL", "original_uoi_id": "bfbc248a12a4bf0382406620f0d9ec41ff42e35e", "sequence_number": 0}, {"id": "3d7debea6815ae46c9598191b1c645007666292a", "name": "03 . Premium Chocolate", "container_state": "NORMAL", "original_uoi_id": "3d7debea6815ae46c9598191b1c645007666292a", "sequence_number": 0}, {"id": "c0bb10be2b8f96ee4d27a2dfb7e0d03de68cf114", "name": "DE", "container_state": "NORMAL", "original_uoi_id": "c0bb10be2b8f96ee4d27a2dfb7e0d03de68cf114", "sequence_number": 0}, {"id": "b124e1ed196028bdd0e2c093e28078ca8d9ad462", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "b124e1ed196028bdd0e2c093e28078ca8d9ad462", "sequence_number": 0}, {"id": "68ce80e8c8a30badb82dabfd823886a6fa6fe309", "name": "Y - Geography", "container_state": "NORMAL", "original_uoi_id": "68ce80e8c8a30badb82dabfd823886a6fa6fe309", "sequence_number": 0}], "complete": true, "sequence_number": 1, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "sequence_number": 0}, {"id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "name": "Read Only", "container_state": "NORMAL", "original_uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "sequence_number": 0}, {"id": "23b155c32d5c6142914b41458234c100812bbec8", "name": "Oliver", "container_state": "NORMAL", "original_uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "sequence_number": 0}, {"id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "name": "Z - Exchange", "container_state": "NORMAL", "original_uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "sequence_number": 0}], "complete": true, "sequence_number": 1, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}], "creator_id": "1003", "asset_state": "NORMAL", "checked_out": false, "folder_path": "", "content_size": 11710, "content_type": "BITMAP", "content_state": "NORMAL", "date_imported": "2026-01-14T14:23:41.743+01:00", "import_job_id": 225736, "subscribed_to": false, "collection_ids": [], "latest_version": true, "legacy_model_id": 116, "content_editable": true, "import_user_name": "bizAdmin", "date_last_updated": "2026-01-14T14:27:26.563+01:00", "metadata_model_id": "ECOMMERCE", "original_asset_id": "85a99b184653d78906eccc8934a67e5ed4bcd9e9", "rendition_content": {"preview_content": {"id": "e2d4cf15ef6d49db983e84862db5de2f0a71489b", "url": "/otmmapi/v6/renditions/e2d4cf15ef6d49db983e84862db5de2f0a71489b", "name": "images-S.png", "width": 225, "height": 225, "mime_type": "image/png", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "PREVIEW", "content_path": "data\\\\repository\\\\screen\\\\vol0\\\\186\\\\images-S_e2d4cf15ef6d49db983e84862db5de2f0a71489b.png", "content_size": 86752, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "thumbnail_content": {"id": "59f031c0ae0f40304470477eb86a29a93d8822c5", "url": "/otmmapi/v6/renditions/59f031c0ae0f40304470477eb86a29a93d8822c5", "name": "images-T.png", "width": 225, "height": 225, "mime_type": "image/png", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "THUMBNAIL", "content_path": "data\\\\repository\\\\thumb\\\\vol0\\\\201\\\\images-T_59f031c0ae0f40304470477eb86a29a93d8822c5.png", "content_size": 86752, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_content_info": {"master_content": {"id": "54b52b6e3712943efccbb09320095372e7ded965", "url": "/otmmapi/v6/renditions/54b52b6e3712943efccbb09320095372e7ded965", "name": "images.jpg", "width": 225, "height": 225, "mime_type": "image/jpeg", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\227\\\\images_54b52b6e3712943efccbb09320095372e7ded965.jpg", "content_size": 11710, "unit_of_size": "BYTES", "content_checksum": "27e06263333fb7d367ba8ee6ab78df97", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_state_user_id": "1003", "master_content_info": {"id": "54b52b6e3712943efccbb09320095372e7ded965", "url": "/otmmapi/v6/renditions/54b52b6e3712943efccbb09320095372e7ded965", "name": "images.jpg", "width": 225, "height": 225, "mime_type": "image/jpeg", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\227\\\\images_54b52b6e3712943efccbb09320095372e7ded965.jpg", "content_size": 11710, "unit_of_size": "BYTES", "content_checksum": "27e06263333fb7d367ba8ee6ab78df97", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "delivery_service_url": "https://ppr.dam.ferrero.com/adaptivemedia/rendition?id=85a99b184653d78906eccc8934a67e5ed4bcd9e9", "product_associations": false, "security_policy_list": [{"id": 5467, "name": "Marketing Viewer", "status": "NORMAL", "created_by": "1003", "create_date": "2023-10-06T16:52:07.297+02:00", "description": "Marketing Viewer", "ownership_type": "PUBLIC"}, {"id": 9525, "name": "Premium Chocolate Local DE Editable Ferrero Rocher", "status": "NORMAL", "created_by": "1003", "create_date": "2024-11-26T10:08:39.973+01:00", "description": "Premium Chocolate Local DE Editable Ferrero Rocher", "ownership_type": "PUBLIC"}], "thumbnail_content_id": "59f031c0ae0f40304470477eb86a29a93d8822c5", "content_state_user_id": "1003", "content_state_user_name": "OTMM BusinessAdmin", "asset_lock_state_user_id": "1003", "metadata_state_user_name": "OTMM BusinessAdmin", "access_control_descriptor": {"permissions_map": {"entry": [{"key": "text.securityPolicy.permission.Custom04Permission", "value": true}, {"key": "text.securityPolicy.permission.ContentEditPermission", "value": true}, {"key": "text.securityPolicy.permission.AssetViewPermission", "value": true}, {"key": "text.securityPolicy.permission.ProjectViewPermission", "value": true}, {"key": "text.securityPolicy.permission.MembershipEditPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom03Permission", "value": true}, {"key": "text.securityPolicy.permission.MetaDataEditPermission", "value": true}, {"key": "text.securityPolicy.permission.EditParentsPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom02Permission", "value": true}, {"key": "text.securityPolicy.permission.ExportPermission", "value": true}, {"key": "text.securityPolicy.permission.SummaryViewPermission", "value": true}, {"key": "text.securityPolicy.permission.PreviewViewPermission", "value": true}, {"key": "text.securityPolicy.permission.SubscribePermission", "value": true}, {"key": "text.securityPolicy.permission.DeleteAssetPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom01Permission", "value": true}]}}, "content_lock_state_user_id": "1003", "asset_state_last_update_date": "2026-01-14T14:27:26.563+01:00", "content_lock_state_user_name": "bizAdmin", "metadata_lock_state_user_name": "bizAdmin", "content_state_last_update_date": "2026-01-14T14:23:42.017+01:00", "inherited_metadata_collections": [{"container_id": "d4d9835db002b9992125246f2abb7117c99ab016", "container_name": "05. Final Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "d4d9835db002b9992125246f2abb7117c99ab016", "originator_id": "d4d9835db002b9992125246f2abb7117c99ab016", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "05. Final Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "container_name": "MASTER CAMP FER ROCHER 12.01.2", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "MASTER CAMP FER ROCHER 12.01.2"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000783"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "MASTER_CAMP_FER_ROC_CQ_LG_DE_PRE_0000783"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local comm on global brands"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Master Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Master Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2026/2027"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "B1"}, "display_value": "Master campaign ready for re-mastering", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ADDITIONALAPPROVER", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.LICENSING", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "d0ef653291e269a7d1ddf0ebfedd1c6ad70b1c59"}, "metadata_element": {"id": "FERRERO.FIELD.LICENSING", "name": "Campaign License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "LICENSING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}}]}, {"container_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "container_name": "01. DE - Rocher ", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "bb01cf85444107f22341d2b88421f0cbaade0bf9"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E006"}, "display_value": "GERMANY", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Local DE Editable Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Premium Chocolate Local DE Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "8f497ce53d23899c7c09aa5a7ca69c9f55c3a62d"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E64"}, "display_value": "GERMANY", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "ca70a6d55e4277ecbef2a01a593c614501cbcf74"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "3e9d669ab1047383d0416ba40af75744148c94c8"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0e241fc386dcd91baa31a409e297169fe4a352c2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "2e3e0f2be0e487b540d9b63cb8c0e9ed9c6b1bb6"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "359c98154f230a60acc6b4eb048e129411d7a778"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "b3698893fc223e8371f4e4c0d560d0536c724a09"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "e92f9f10c0c29dda8261218c2c72a0baa66472f2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "15dff42c3b196ba3ae5b3c2ea33f00e347e6f654"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Extended Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0ae044cd9dddf86cd9406c9edc3996b18c430be0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "name": "AMMC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AMMC", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LOCAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "7806fed6127b50c21f6b03e1f7b63f3dedc1e8d1"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "RMMC", "values": [{"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "4c8a2d6e178638bfacfeaf3f7f6f1000304693a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "name": "Product Asset Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Product Asset Approval Ferrero Rocher Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Asset Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCT_ASSET_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local comm on global brands"}, "display_value": "Local comm on global brands", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "5a1ae26558efdc03336c0df838dd9e7c2a51c687"}, "metadata_element": {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "name": "Market Unit", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market Unit", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETUNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "MARKET_UNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "091216b59cad7f1ea815164c26db27e350c54023", "container_name": "EU", "container_type_id": "GEOGRAPHYLOCAL", "container_type_name": "L4 - GEOGRAPHY LOCAL", "inherited_metadata_values": [{"id": "FERRERO.MARKET.FOLDER.GLOBAL", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "4c4d4bf36bf8b1ace55f990e78d6332a9cb20990"}, "metadata_element": {"id": "FERRERO.MARKET.FOLDER.GLOBAL", "name": "Global/Local (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "LOCAL"}, "display_value": "Local", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local (Marketing)", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "GLOBALLOCAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_AREA", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "3dc200c993ab8263952dc6da1498026f615f45dd"}, "metadata_element": {"id": "MARKETING_AREA", "name": "AREA", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E010"}, "display_value": "EUROPE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "AREA", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "AREA", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "AREA", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "dc7749c3e113ec9e0b9e9a3840ea55673ca5e49f"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "f2d658a3829c2ea158ae70a4b4e7928bcf88f8e2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "972d0258a82de85672bd84d8af68cdb67ad3d3ca"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "1212505ad3fe4c9d7458568f3d95aeb4c4e5c37e"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "9d1dfdef55ff7a3eb03552988ddf729c7a0f5107"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "54f006eeb366121a29ee98da33d437615dcd34e0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "1fd8802010e30d44cebb2f3eb090b12ac550f97d"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "8b6e1d8f7dc3c4671cfc11a2914d838ca3ee3f3b"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "be0dc9a87262ee7fd165237b531ba3b7aa93a260"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "2f99f0f0f9e43fb34df9222c8b73a86fb78e473e"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "container_name": "01. Rocher", "container_type_id": "GLOBALBRAND", "container_type_name": "L3 - BRAND", "inherited_metadata_values": [{"id": "FERRERO.TABULAR.NEW.BRAND", "tabular": true, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "9bb1c183135f5240f09132aef59c4ea48c762381"}, "metadata_element": {"id": "FERRERO.TABULAR.NEW.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF04"}, "display_value": "ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND (Marketing)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF04"}, "display_value": "ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "BRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TABULAR_BRAND", "column_name": "BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.NEW.BRAND", "parent_table_name": "BRAND (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "tabular": true, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "a37b13c02cba799378211e17b73234a0d836f9b6"}, "metadata_element": {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "CQ"}, "display_value": "FERRERO ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND(HARMONIZED)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "CQ"}, "display_value": "FERRERO ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.HARMONIZEDBRAND", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_HARMONIZEDBRAND", "column_name": "HARMONIZEDBRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.HARMONIZEDBRAND", "parent_table_name": "BRAND(HARMONIZED)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "AGENCY.COLLABORATION", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "183d6e0957a9940f9b18ef44f46d957802b63397"}, "metadata_element": {"id": "AGENCY.COLLABORATION", "name": "Agency collaboration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency collaboration", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "AGENCY_COLLABORATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "AGENCY.SHARING", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "d0e2b725ddfdc452cc3ba750bbe8ec059c6b01ba"}, "metadata_element": {"id": "AGENCY.SHARING", "name": "Agency sharing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency sharing", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "AGENCY_SHARING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "CONTENT.SCALING.AGENCYNAME", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "f9dfa695cc5ef8cd3fafada4e44cfdaa1522d58a"}, "metadata_element": {"id": "CONTENT.SCALING.AGENCYNAME", "name": "Content Scaling agency name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Scaling agency name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENTSCALING_AGENCYNAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "container_name": "01. Ferrero Rocher", "container_type_id": "GLOBALSUBCATEGORY", "container_type_name": "L2 - SUBCATEGORY", "inherited_metadata_values": [{"id": "MARKETING_SUBCATEGORY", "tabular": false, "value_id": {"uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "originator_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "inherited_field_id": "3000ad591e09b5c75f85fc2ccbb9ebeb31b3ab78"}, "metadata_element": {"id": "MARKETING_SUBCATEGORY", "name": "SUBCATEGORY", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Mart-Ferrero-Rocher"}, "display_value": "Ferrero Rocher", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "SUBCATEGORY", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "SUBCATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "SUBCATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "tabular": true, "value_id": {"uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "originator_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "inherited_field_id": "2c751ce760d88c0e271925ea5149348106944bfa"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Subcategory Owner", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_SUBCATEGORY_OWNER_TM", "column_name": "SUBCATEGORY_OWNER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "parent_table_name": "Subcategory Owner", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "container_name": "03. Premium Chocolate", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "originator_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E06"}, "display_value": "PREMIUM CHOCOLATE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "originator_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final Approver BPS ", "values": [{"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "container_name": "00. Master Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "originator_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00. Master Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "container_name": "LOCADAPLOCCOMM - FER ROCHER 4", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "LOCADAPLOCCOMM - FER ROCHER 4"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000794"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "LOCADAPLOCCOMM_-__CQ_LAL_MLT_PRE_0000794"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local adaptation of local comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Master Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000783"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Master Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "DK"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "DK"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "SE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "FI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "NO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "IS"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "GL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2025/2026"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2797"}, "display_value": "Owner, Asset (AssetownerLoG, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2797"}, "display_value": "Owner, Asset (AssetownerLoG, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2797"}, "display_value": "Owner, Asset (AssetownerLoG, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2797"}, "display_value": "Owner, Asset (AssetownerLoG, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "A2"}, "display_value": "Selected Master Assets sent to Agency", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ADDITIONALAPPROVER", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.LICENSING", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "d0ef653291e269a7d1ddf0ebfedd1c6ad70b1c59"}, "metadata_element": {"id": "FERRERO.FIELD.LICENSING", "name": "Campaign License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "LICENSING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}}]}, {"container_id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "container_name": "25-26", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "originator_id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "25-26"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "container_name": "02. Campaign", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "originator_id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "02. Campaign"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "f31042cfc487f066486c46527c076b8ee6618ceb", "container_name": "01. Standard", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "f31042cfc487f066486c46527c076b8ee6618ceb", "originator_id": "f31042cfc487f066486c46527c076b8ee6618ceb", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "01. Standard"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "container_name": "02. Sweden", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "originator_id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "02. Sweden"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "container_name": "SCANDINAVIA", "container_type_id": "GLOBALMARKETUNIT", "container_type_name": "L6 - MARKET UNIT", "inherited_metadata_values": [{"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "24a6615bcce9adc5a098c76c29b8e8baba61a9a3"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E22"}, "display_value": "SCANDINAVIA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "13063087b81ea172db42e69ed8e8fa013cd5bfe0"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Local SCANDINAVIA Editable Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "bf49ba2a40d0d0dccee4d5de7381659b106dd89a"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Premium Chocolate Local SCANDINAVIA Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "8e4d311466783d8215a38b08bee3cb2b3bfcf40f"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "9e88b5726590ab30642999a28a301e3fbcebc762"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "name": "Published Security Policy - Restricted Visibility", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Security Policy - Restricted Visibility", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_VISIBILITY_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "3c0070e420882e3e18f6097811cb60a67239003b"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local SCANDINAVIA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "7f3c1933b61e900457ea6e2aab750303882873d4"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "b0c960759e48c0fcdcb650417179a614da95e866"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Local SCANDINAVIA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "6f603fcc63415e266dc35cf2314d31357a2966bf"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "3c12728b06ecfafeeb74482ea7b7296b180765f9"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "dc9b8ffa0591a1b2956c07fa5dc10ff477c84f4e"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "495fa4f08769a021cfa907dfb7a903fade9bd19a"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "e3b647e172a89e1e7cbdd2964faff1bca8dcf520"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "6870cca056b54cd400a9fbd4fe75513e69cedcdd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "RMMC", "values": [{"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "container_name": "01. MC - Rocher", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "bb01cf85444107f22341d2b88421f0cbaade0bf9"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E023"}, "display_value": "MULTI COUNTRY EUROPE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "8f497ce53d23899c7c09aa5a7ca69c9f55c3a62d"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E22"}, "display_value": "SCANDINAVIA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "ca70a6d55e4277ecbef2a01a593c614501cbcf74"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "3e9d669ab1047383d0416ba40af75744148c94c8"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "0e241fc386dcd91baa31a409e297169fe4a352c2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "2e3e0f2be0e487b540d9b63cb8c0e9ed9c6b1bb6"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "359c98154f230a60acc6b4eb048e129411d7a778"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "b3698893fc223e8371f4e4c0d560d0536c724a09"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "e92f9f10c0c29dda8261218c2c72a0baa66472f2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "15dff42c3b196ba3ae5b3c2ea33f00e347e6f654"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "0ae044cd9dddf86cd9406c9edc3996b18c430be0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "name": "AMMC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AMMC", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LOCAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "7806fed6127b50c21f6b03e1f7b63f3dedc1e8d1"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "RMMC", "values": [{"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "4c8a2d6e178638bfacfeaf3f7f6f1000304693a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "name": "Product Asset Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Asset Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCT_ASSET_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of local comm"}, "display_value": "Local adaptation of local comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of local comm"}, "display_value": "Local adaptation of local comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "5a1ae26558efdc03336c0df838dd9e7c2a51c687"}, "metadata_element": {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "name": "Market Unit", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market Unit", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETUNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "MARKET_UNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "container_name": "Read Only", "container_type_id": "L3 - Agency Structure", "container_type_name": "L3 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "55530f721f18c847e35d7c828edf53461b5014b0"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "330bb6f68316aab5c45f9fe34e047cce573c67cc"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "name": "Agency Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "AGENCY_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "e30e90d694f9935d4c15c4c78891beed8853a272"}, "metadata_element": {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "name": "Published Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "PUBLISHED_ASSET_SP_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "23b155c32d5c6142914b41458234c100812bbec8", "container_name": "Oliver", "container_type_id": "L2 - Agency Structure", "container_type_name": "L2 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.AGENCY", "tabular": false, "value_id": {"uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "originator_id": "23b155c32d5c6142914b41458234c100812bbec8", "inherited_field_id": "48fcbc397986aca5bb8722a95197dd0a46f19b4e"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_AGENCY", "column_name": "AGENCY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "container_name": "Z - Exchange", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "YY"}, "display_value": "AGENCIES", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Final Approver BPS ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}], "asset_lock_state_last_update_date": "2026-01-14T14:27:42.143+01:00", "content_lock_state_last_update_date": "2026-01-14T14:23:42.103+01:00"} \N \N active f \N \N 2026-01-16 20:54:48.714499 2026-01-16 20:54:48.714499 2026-01-16 20:54:48.714499 21 MnknDd 6341dedf8117677336cb66fa9a7ce94c4c2d10d1 kinder-joy_videoE2E .mp4 \N video/mp4 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N d4d9835db002b9992125246f2abb7117c99ab016 Box File ID: 2105223961990\nBox URL: https://app.box.com/file/2105223961990\nDAM Asset ID: 6341dedf8117677336cb66fa9a7ce94c4c2d10d1 {"name": "kinder-joy_videoE2E.mp4", "links": {"links": [], "source_id": "6341dedf8117677336cb66fa9a7ce94c4c2d10d1"}, "locked": false, "deleted": false, "expired": false, "version": 1, "asset_id": "6341dedf8117677336cb66fa9a7ce94c4c2d10d1", "metadata": {"id": "ECOMMERCE", "name": "Marketing Asset", "type": "com.artesia.metadata.MetadataModel", "legacy_id": 116, "metadata_element_list": [{"id": "FERRERO.CATEGORY.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200054, "metadata_element_list": [{"id": "FERRERO.FIELD.CONTENT_STATUS", "name": "Content Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Status", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.CONTENT_STATUS", "edit_type": "COMBO_NOTNULL", "facetable": false, "searchable": true, "table_name": "FERRERO_CONTENT_STATUS_MD", "column_name": "CONTENT_STATUS", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9215, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRER.CATEGORY.ASSET_INFO", "name": "Asset Info", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200022, "metadata_element_list": [{"id": "FERRERO.FIELD.MKTG.ASSET TYPE", "name": "Asset Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.ASSETTYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.FISCAL YEAR", "name": "Release Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2026/2027"}, "display_value": "2026/2027", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Release Fiscal Year", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_DOMAIN_FISCAL_YEAR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "FISCAL__YEAR", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "name": "Main Languages", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1210, "metadata_element_list": [{"id": "MAIN_LANGUAGES", "name": "MAIN LANGUAGES", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "MAIN LANGUAGES", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Global", "field_value": {"type": "string", "value": "Global"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MAIN LAGUAGES_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MAIN_LANGUAGE_TABLE", "column_name": "MAIN_LANGUAGE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.MAIN LANGUAGES", "parent_table_name": "Main Languages", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.ASSET DESCRIPTION", "name": "Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Description", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "DESCR", "data_length": 249, "description": "Descriptive information", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.FLAVOUR", "name": "Flavour", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Flavour", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.FLAVOUR", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FLAVOUR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.MARKETING.SIZE", "name": "Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Size", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.SIZE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SIZE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1241, "metadata_element_list": [{"id": "FERRERO.FIELD.ASSETCOMPLIANCE", "name": "Asset Compliance", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Compliance", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ASSETCOMPLIANCE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_COMPLIANCE", "column_name": "ASSET_COMPLIANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSETCOMPLIANCE", "parent_table_name": "Asset Compliance", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.TAG DETAILS", "name": "Tag Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 118, "metadata_element_list": [{"id": "ARTESIA.FIELD.TAG", "name": "Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Tag", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.TAGS", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "OTMM_TAGS", "column_name": "TAG", "data_length": 80, "description": "Tag", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG CONFIDENCE", "name": "Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Confidence", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG TYPE", "name": "Tag Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Tag Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "TAG_TYPE", "data_length": 10, "description": "Tag Type", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED BY", "name": "Associated By", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Associated By", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_BY", "data_length": 10, "description": "Associated By", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.TAG ASSOCIATED DATE", "name": "Associated Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Associated Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": false, "table_name": "OTMM_TAGS", "column_name": "ASSOCIATED_DATE", "data_length": 10, "description": "Associated Date", "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.TAG DETAILS", "parent_table_name": "Tag Details", "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.STATE", "name": "Global/Local", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "GLOBAL"}, "display_value": "Global", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO_NOTNULL", "facetable": true, "searchable": true, "table_name": "FERRERO_IC_ASSET_DETAILS", "column_name": "ASSET_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.ASPECT RATIO", "name": "Aspect Ratio (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio (Marketing)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASPECT_RATIO", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASPECT_RATIO", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "name": "Tag (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1222, "metadata_element_list": [{"id": "MARKETING_TAG", "name": "Marketing Tag", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Marketing Tag", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.DOMAIN.TAG", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TAG_MARKET", "column_name": "TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.MARKETING.TAG", "parent_table_name": "Tag (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.TAGS", "name": "Auto-Generated Tags", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Auto-Generated Tags", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "AUTO_GENERATED_TAG", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CERTIFIER", "name": "Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approver", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.MARKETING.FIELD.APPROVAL DATE", "name": "Approval__Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Approval__Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.LEGAL APPROVAL DATE", "name": "Legal Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CERTIFIER", "name": "IA&CC Certifier", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Certifier", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.IA CC APPROVAL DATE", "name": "IA&CC Approval Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC Approval Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_APPROVAL_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "name": "Extended Approval", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1230, "metadata_element_list": [{"id": "FERRERO.FIELD.EXTENDED.APPROVAL", "name": "Extended Approval required by:", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended Approval required by:", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COMMENTS", "name": "Comment", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comment", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "COMMENTS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.DATE", "name": "Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USERS", "name": "User ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "User ID", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "USERS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXTENDED.JOBID", "name": "Extended JobID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Extended JobID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_EXTENDED_APPROVAL", "column_name": "EXTENDED_JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.FIELD.EXTENDED_APPROVAL", "parent_table_name": "Extended Approval", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.MIGRATION.INDEX", "name": "Migration Index", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Migration Index", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MIGRATION.INDEX", "edit_type": "TYPE_AHEAD_ADD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MIGRATION_INDEX", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "FERRERO_MARKET_MARKETING_CREATOR", "name": "Marketing Creator", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Marketing Creator", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.CREATOR", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "MARKETING_CREATOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2}, {"id": "ARTESIA.FIELD.IS LATEST VERSION", "name": "Is Latest Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Y"}, "display_value": "Yes", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Is Latest Version", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.YES_NO", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "IS_LATEST_VERSION", "data_length": 1, "description": "Is this the latest version? (Y/N)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET VERSION", "name": "Asset Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "int", "value": 1}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Version", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "INTEGER", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "VERSION", "data_length": 12, "description": "Version number of asset", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.ASSET_ID", "name": "Asset ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "6341dedf8117677336cb66fa9a7ce94c4c2d10d1"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset ID", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "LOGICAL_UOI_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.ECOMMERCE STATUS", "name": "Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "PUBLISHED"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Status", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "ASSET_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ECOMMERCE CREATOR", "name": "Uploaded by", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Uploaded by", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_USER_ID", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "typeahead_num_min_chars": 2}, {"id": "FERRERO.FIELD.CREATION DATE", "name": "Upload Date", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-14T14:23:41.74+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Upload Date", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "IMPORT_DT", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.ASSET NAME", "name": "Asset Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "kinder-joy_videoE2E.mp4"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Name", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "description": "Original name of master object", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.CONTENT TYPE", "name": "Content Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "VIDEO"}, "display_value": "Video", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Type", "enabled": true, "domained": true, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.CONTENT_TYPES", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "CONTENT_TYPE", "data_length": 8, "description": "Content Type", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.FIELD.MIME TYPE", "name": "File Extension", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "video/mp4"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Extension", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_MIME_TYPE", "data_length": 80, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.FILE.SIZE", "name": "File Size", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "long", "value": 3080691}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "File Size", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "LONG", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "MASTER_OBJ_SIZE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP RESOLUTION", "name": "Bitmap Resolution", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Resolution", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_RESOLUTION", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP WIDTH", "name": "Bitmap Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Width", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_WIDTH", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.BITMAP HEIGHT", "name": "Bitmap Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitmap Height", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "INTEGER", "facetable": false, "searchable": true, "table_name": "UOIS", "column_name": "BITMAP_HEIGHT", "data_length": 24, "description": "Basic property of an asset of content type BITMAP (generated by import server)", "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "name": "Approval Metadata", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1249, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.DEPARTMENT", "name": "Department", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Department", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "DEPARTMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.CERTIFIER", "name": "Certifier", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Certifier", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "CERTIFIER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL DATE", "name": "Approval Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Approval Date", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "APPROVAL_DATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.COMMENT", "name": "Comments", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Comments", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "COMMENT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.TYPE OF APPROVAL", "name": "Type of Approval", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Approval", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "TYPE_OF_APPROVAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.APPROVAL STATUS", "name": "Approval Status", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Approval Status", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "APPROVAL_STATUS", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.TABULAR.FIELD.SUB JOBID", "name": "Sub Job Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sub Job Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_APPROVAL_METADATA", "column_name": "JOBID", "data_length": 38, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "FERRERO.TABULAR.FIELD.APPROVAL.METADATA", "parent_table_name": "Approval Metadata", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.VIDEO.BIT_RATE", "name": "Bitrate", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 2487939.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Bitrate", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "BIT_RATE", "data_length": 24, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.EMBEDDED.FIELD.DURATION", "name": "Duration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00:00:09:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Duration", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "VIDEO_METADATA_VIEW", "column_name": "DURATION_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.ASPECT RATIO", "name": "Aspect Ratio", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "1.778"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "ASPECT_RATIO", "data_length": 30, "displayable": false, "instructions": "ASPECT_RATIO", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME HEIGHT", "name": "Frame Height", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 1080}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Height", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_HEIGHT", "data_length": 12, "displayable": true, "instructions": "FRAME_HEIGHT", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.FRAME WIDTH", "name": "Frame Width", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 1920}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Frame Width", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "VIDEO_METADATA_VIEW", "column_name": "FRAME_WIDTH", "data_length": 12, "displayable": true, "instructions": "FRAME_WIDTH", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.ASPECT.RATIO.POC", "name": "Aspect Ratio(POC)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "16:9"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Aspect Ratio(POC)", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASPECT_RATIO_TABLE", "column_name": "ASPECT_RATIO", "data_length": 40, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "PRODUCT.DETAILS", "name": "Product Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200029, "metadata_element_list": [{"id": "FERRERO.TABLE.EANCODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1208, "metadata_element_list": [{"id": "EAN_CODE", "name": "EAN CODE/ 77 CODE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "EAN CODE/ 77 CODE", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "EAN.CODE", "edit_type": "TYPE_AHEAD", "facetable": true, "searchable": true, "table_name": "EAN_CODE", "column_name": "EAN_CODE_DESCRIPTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "COUNTRY", "name": "COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "EAN_CODE", "column_name": "COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABLE.EANCODE", "parent_table_name": "EAN CODE/ 77 CODE", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKETING.ADVANCE.PRODUCT.LINK", "name": "Asset-to-product relation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset-to-product relation", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO_MARKETING_ADVANCE_PRODUCT_LINK", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ADVANCE_PRODUCT_LINK", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 10182, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.SUB BRAND", "name": "Sub-Brands", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Sub-Brands", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.SUBBRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "SUB_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT WEIGHT", "name": "Product Weight", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Weight", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_WEIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.CONSUMER UNIT PACKAGING", "name": "Consumer Unit Packaging", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Consumer Unit Packaging", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PACK", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "CONSUMER_UNIT_PACKAGING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.4 DIGIT CODE", "name": "4 Digit Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "4 Digit Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "ECOMMERCE", "column_name": "DIGITCODE", "data_length": 4, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERREO.ECOM.RETAILER_SPECIFIC_FIELD", "name": "Retailer Specific", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Retailer Specific", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "RETAILER_SPECIFIC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "cascading_group_id": "FERRERO.RETAILER.SPECIFIC", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY START PERIOD", "name": "Asset validity start period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity start period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_STARTING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7242, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.ASSET VALIDITY END PERIOD", "name": "Asset validity end period", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset validity end period", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "VALIDATION_ENDING_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.ASSET.NAMING.CONVENTION", "name": "Does asset need GS1 naming convention", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Does asset need GS1 naming convention", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.ASSETNAMINGCONVENTION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "ASSET_NAMING_CONVENTION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9515, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT VIEW", "name": "Product View", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product View", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT VIEW", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_VIEW", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT ANGLE", "name": "Product Angle", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Angle", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT.ANGLE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_ANGLE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PRODUCT STATE", "name": "Product State", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product State", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PRODUCT STATE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "PRODUCT_STATE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PROMOTION ID", "name": "Promo ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Promo ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROMO_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "OTMM.FIELD.BUSINESS.ASSET TYPE", "name": "Asset Type (eDAM)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "Angled view", "field_value": {"type": "string", "value": "angledview"}, "display_value": "ANGLED VIEW", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Asset Type (eDAM)", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "OTMM.DOMAIN.OTMM_ASSETTYPE_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_BUSINESS_INFO", "column_name": "ASSET_TYPE", "data_length": 30, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7244, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200048, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.AGENCY NAME", "name": "Agency Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "0000000001"}, "display_value": "ATest", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Agency Name", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.AGENCY_NAME", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AGENCY_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7336, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.CREATIX", "name": "CreativeX", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200059, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.CREATIVEX", "name": "Confidence", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1245, "metadata_element_list": [{"id": "FERRERO.TAB.FIELD.CREATIVEX", "name": "Platform > Rating (%)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Platform > Rating (%)", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_CREATIVEX", "column_name": "CREATIVEX_NEW", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CREATIVEX", "parent_table_name": "Confidence", "cascading_group_id": "FERRERO.CREATIVEX.CHAR", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.CREATIVEX LINK", "name": "CreativeX Hyperlink", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "CreativeX Hyperlink", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_ASSET_CREATIVEX", "column_name": "CREATIVE_LINK", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.IP_RIGHTS", "name": "IP Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200046, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.IPRIGHT", "name": "IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IP Rights", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.IPRIGHTS", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IP_RIGHTS", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.BUYOUT", "name": "Touchpoint Scope", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Touchpoint Scope", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.TOTAL_BUYOUT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TOTAL_BUYOUT", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.FERRERO PROPERTY", "name": "Ferrero Property", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Ferrero Property", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.FERRERO_PROPERTY", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FERRERO_PROPERTY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.FIELD.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200035, "metadata_element_list": [{"id": "FERRERO.IPRIGHTS", "name": "IP Rights", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1209, "metadata_element_list": [{"id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "name": "IP Coverage, Area, Region & Market Unit", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Coverage, Area, Region & Market Unit", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "IPCOVERAGE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "cascading_group_id": "FERRERO.IPCOVERAGE.AREA.REG.MARK", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHT TYPE", "name": "Copyright Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHT_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.MEDIATYPE", "name": "Media Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Media Type", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MEDIA_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "MEDIA_TYPE", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE FROM", "name": "Expiration of Usage - From", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - From", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_FROM", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.EXPIRATION_OF_USAGE TO", "name": "Expiration of Usage - To", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Expiration of Usage - To", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "EXPIRATION_OF_USAGE_TO", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO._DURATION", "name": "IP Duration", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "IP Duration", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "ECOM_DURATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.COPYRIGHTTYPE DETAILS", "name": "Copyright Type Details", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Copyright Type Details", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "FERRERO_IP_RIGHTS", "column_name": "COPYRIGHTTYPE_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 6, "restriction_id": 7243, "parent_table_id": "FERRERO.IPRIGHTS", "parent_table_name": "IP Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.MARKET.VID_STAT_RIGHT", "name": "Video & Static Rights (Marketing)", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200047, "metadata_element_list": [{"id": "FERRERO.MARKET.VID_N_STAT", "name": "Video and Static Right", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video and Static Right", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VID_AND_STAT_RIGHT", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.TABULAR.VID_STAT_TYPE", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1221, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.TYPE_VID", "name": "Type of Video & Static Right", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Type of Video & Static Right", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TYPE_VID_STAT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_MARKET_TYPE_VID_STAT", "column_name": "TYPE_OF_VIDEO_STATIC_RIGHT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 5429, "parent_table_id": "FERRERO.TABULAR.VID_STAT_TYPE", "parent_table_name": "Type of Video & Static Right", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.MARKET.PROD_COMPANY", "name": "Production House", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "-"}, "display_value": "-", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Production House", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.MARKETING.PRODUCT", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200050, "metadata_element_list": [{"id": "FERRERO.MARKET.FIELD.LICENSIN", "name": "Licensing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "No"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Licensing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSING", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKET.FIELD.LICENSE", "name": "License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "CASCADING", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "cascading_group_id": "FERRERO.MARKET.CG.LICENSE", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "FERRERO.MARKETING.FIELDGROUP.SPOT_DETAILS", "name": "Spot Details", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200049, "metadata_element_list": [{"id": "FERRERO.MARKETING.FIELD.SPOT_VERSION", "name": "Spot Version", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Version", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_VERSION", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_VERSION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.SPOT_TYPE", "name": "Spot Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Spot Type", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETING.SPOT_TYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "SPOT_TYPE", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.DIRECTOR_NAME", "name": "Director Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Director Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "DIRECTOR_NAME", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VIDEO_POST_PROD_COMPANY", "name": "Video Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.VID_POST_PROD_CONTACT", "name": "Video Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "VIDEO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_COMPANY", "name": "Audio Post-Production Company", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post-Production Company", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_POST_PRODUCTION_COMPANY", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.AUDIO_POST_PROD_CONTACT", "name": "Audio Post Production Company Contact Details", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Audio Post Production Company Contact Details", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "AUDIO_COMPANY_DETAILS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.BROADCASTER.CODE", "name": "Broadcaster Code", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Broadcaster Code", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BROADCASTER_CODE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.MARKETING.FIELD.TECHNICAL_VALIDATION", "name": "Technical Validation", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Technical Validation", "enabled": true, "domained": true, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKET.TECH_VALID", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "TECHNICAL_VALIDATION", "data_length": 100, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS", "name": "Media Analysis", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1002, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "name": "Categories", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 105, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY NAME", "name": "Category Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Category Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "NAME", "data_length": 100, "description": "Category Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CATEGORY CONFIDENCE", "name": "Category Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Category Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CATEGORIES", "column_name": "CONFIDENCE", "data_length": 10, "description": "Category Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CATEGORIES", "parent_table_name": "Categories", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES COUNT", "name": "Faces Count", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Faces Count", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACECOUNT", "column_name": "COUNT", "data_length": 10, "description": "Faces Count", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "name": "Face Details", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 106, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME", "name": "Recognized Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME", "data_length": 2000, "description": "Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.NAME CONFIDENCE", "name": "Recognized Name Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Recognized Name Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "NAME_CONFIDENCE", "data_length": 10, "description": "Name Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE", "name": "Person Age", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE", "data_length": 10, "description": "Person Age", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE CONFIDENCE", "name": "Person Age Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Person Age Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_CONFIDENCE", "data_length": 10, "description": "Person Age Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER", "name": "Gender", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Gender", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.GENDER", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER", "data_length": 40, "description": "Gender", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.GENDER CONFIDENCE", "name": "Gender Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Gender Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "GENDER_CONFIDENCE", "data_length": 10, "description": "Gender Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.FACE COORDS", "name": "Face Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "FACE_COORDS", "data_length": 200, "description": "Face Coordinates like postion, height,width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.FACES.AGE GROUP", "name": "Person Age Group", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Person Age Group", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "domain_id": "ARTESIA.DOMAIN.MEDIA_ANALYSIS.AGE GROUP", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "OTMM_MA_FACE_DETAILS", "column_name": "AGE_GROUP", "data_length": 10, "description": "Person Age Group", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.FACE DETAILS", "parent_table_name": "Face Details", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "name": "Safe Content", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 107, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONTENT TYPE", "name": "Safe Content Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Safe Content Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENTS", "data_length": 20, "description": "Safe Content Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SAFE CONTENT.CONFIDENCE", "name": "Content Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Content Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CONTENT_SAFETY", "column_name": "CONTENT_CONFIDENCE", "data_length": 10, "description": "Safe Content Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.SAFE CONTENT", "parent_table_name": "Safe Content", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "name": "Colors", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 108, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.NAME", "name": "Color", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Color", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "NAME", "data_length": 25, "description": "COLOR", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.PROPORTION", "name": "Color Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Color Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_ALL_COLORS", "column_name": "PROPORTION", "data_length": 10, "description": "Proportion", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.COLORS", "parent_table_name": "Colors", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.FOREGROUND", "name": "Foreground Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Foreground Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "FOREGROUND", "data_length": 25, "description": "Foreground Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.BACKGROUND", "name": "Background Color", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Background Color", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "BACKGROUND", "data_length": 25, "description": "Background Color", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.COLOR.ISBW", "name": "Is Black and White", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Is Black and White", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BASE_COLORS", "column_name": "ISBW", "data_length": 10, "description": "Is Black and White", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "name": "Captions", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 109, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION TEXT", "name": "Caption Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Caption Text", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "TEXT", "data_length": 2000, "description": "Caption Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.CAPTION CONFIDENCE", "name": "Caption Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Caption Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_CAPTIONS", "column_name": "CAPTION_CONFIDENCE", "data_length": 10, "description": "Caption Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.CAPTIONS", "parent_table_name": "Captions", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "name": "Image Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 110, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.IMAGE TYPE", "name": "Analysis Image Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Analysis Image Type", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_IMAGE_TYPE", "column_name": "TYPE", "data_length": 100, "description": "Image Type", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.IMAGE", "parent_table_name": "Image Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.DATE", "name": "Date: Media Analysis", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "dateTime", "value": "2026-01-14T14:26:29+01:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date: Media Analysis", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "MEDIA_ANALYSIS_DATE", "data_length": 25, "description": "Date Media Analysis was done on the asset.", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR LANGUAGE", "name": "Image Text Language", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Image Text Language", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "LANGUAGE", "data_length": 10, "description": "OCR data language", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.OCR TEXT", "name": "Text on Image", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Text on Image", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_OCR", "column_name": "TEXT", "data_length": 4000, "description": "OCR Text", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "restriction_id": 8727, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "name": "Embedded Brand Info", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 119, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.NAME", "name": "Embedded Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Embedded Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Embedded Brand Name", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.CONFIDENCE", "name": "Embedded Brand Confidence", "type": "com.artesia.metadata.MetadataTableField", "scale": 2, "prompt": "Embedded Brand Confidence", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "CONFIDENCE", "data_length": 10, "description": "Embedded Brand Confidence", "displayable": true, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.BRAND.COORDINATES", "name": "Embedded Brand Coordinates", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Embedded Brand Coordinates", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_BRANDS", "column_name": "COORDINATES", "data_length": 200, "description": "Embedded Brand Coordinates like position, height, width etc.,", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "restriction_id": 8727, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.BRAND INFO", "parent_table_name": "Embedded Brand Info", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "HYBRIS.PRODUCT.INFO", "name": "PIM Item Reference", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200027, "metadata_element_list": [{"id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "name": "Hybris Item Reference", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1206, "metadata_element_list": [{"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ID", "name": "Hybris Item ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ID", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT TAG NAME", "name": "Hybris Assignment Label", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Assignment Label", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_TAG_NAME", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT ATTRIBUTE NAME", "name": "Hybris Attribute Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Attribute Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_ATTRIBUTE_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT CATALOG NAME", "name": "Hybris Catalog Mnemonic", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Catalog Mnemonic", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_CATALOG_NAME", "data_length": 200, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.PRODUCT PK", "name": "Hybris Item PK", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris Item PK", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "PRODUCT_PK", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "HYBRIS.FIELD.PRODUCT.SYSTEM ID", "name": "Hybris System ID", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Hybris System ID", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OPENTEXT_HYBRIS_PRODUCTS", "column_name": "SYSTEM_ID", "data_length": 100, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "HYBRIS.TABLE.PRODUCT.PRODUCT INFO", "parent_table_name": "Hybris Item Reference", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "FERRERO.FIELD.ASSIGNED", "name": "Assigned", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Assigned", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "NUMBER", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "ASSIGNED", "column_name": "ASSIGNED", "data_length": 38, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "FERRERO.FIELD.PIM TYPE", "name": "PIM Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "PIM Type", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_PIM_TYPE", "column_name": "PIM_TYPE", "data_length": 2000, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "ARTESIA.CATEGORY.MEDIA ANALYSIS VIDEO", "name": "Media Analysis Video", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 1003, "metadata_element_list": [{"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "name": "Labels", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 113, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.ID", "name": "Label Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Label Id", "values": [{"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 1}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "int", "value": 2}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "ID", "data_length": 40, "description": "Label Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.NAME", "name": "Label Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "clothing"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Label Name", "values": [{"value": {"type": "string", "value": "clothing"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "fabric"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "candy"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "NAME", "data_length": 40, "description": "Label Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.LABLE.APPEARANCES", "name": "Label Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:03\\",\\"endTime\\":\\"0:00:03.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Label Appearances", "values": [{"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:03\\",\\"endTime\\":\\"0:00:03.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:03\\",\\"endTime\\":\\"0:00:03.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "[{\\"startTime\\":\\"0:00:07\\",\\"endTime\\":\\"0:00:07.04\\"}]"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_LABELS", "column_name": "APPEARANCES", "data_length": 0, "description": "Label Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.LABELS", "parent_table_name": "Labels", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "name": "Sentiments", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 114, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.ID", "name": "Sentiment Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "ID", "data_length": 40, "description": "Sentiment Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.NAME", "name": "Sentiment Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "NAME", "data_length": 40, "description": "Sentiment Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.APPEARANCES", "name": "Sentiment Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "APPEARANCES", "data_length": 0, "description": "Sentiment Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SENTIMENT.SEEN.DURATION.RATIO", "name": "Sentiment Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Sentiment Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SENTIMENTS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Sentiment Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SENTIMENTS", "parent_table_name": "Sentiments", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "name": "Keywords", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 115, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.ID", "name": "Keyword Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "ID", "data_length": 40, "description": "Keyword Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.NAME", "name": "Keyword Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "NAME", "data_length": 40, "description": "Keyword Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.KEYWORD.APPEARANCES", "name": "Keyword Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Keyword Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_KEYWORDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Keyword Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.KEYWORDS", "parent_table_name": "Keywords", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "name": "Faces", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 111, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.ID", "name": "Face Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "ID", "data_length": 40, "description": "Face Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.NAME", "name": "Face Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "NAME", "data_length": 40, "description": "Face Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.TITLE", "name": "Face Title", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Title", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "TITLE", "data_length": 249, "description": "Face Title", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.DESCRIPTION", "name": "Face Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Face Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.APPEARANCES", "name": "Face Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "APPEARANCES", "data_length": 0, "description": "Face Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.SPEAKER.FACE.ID", "name": "Video Speaker Object Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Speaker Object Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "THUMBNAIL_OBJECT_ID", "data_length": 40, "description": "Video Speaker Object Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.FACE.SEEN.DURATION.RATIO", "name": "Face Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Face Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_FACES", "column_name": "SEEN_DURATION_RATIO", "data_length": 20, "description": "Face Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.FACES", "parent_table_name": "Faces", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "name": "Brands", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 112, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.ID", "name": "Video Brand Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "ID", "data_length": 40, "description": "Brand Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.NAME", "name": "Video Brand Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "NAME", "data_length": 40, "description": "Brand Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.DESCRIPTION", "name": "Video Brand Description", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Description", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "DESCRIPTION", "data_length": 1000, "description": "Brand Description", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.WIKIURL", "name": "Video Brand Wiki URL", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Wiki URL", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "WIKIURL", "data_length": 200, "description": "Brand Wiki URL", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.APPEARANCES", "name": "Video Brand Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "TEXTAREA", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "APPEARANCES", "data_length": 0, "description": "Brand Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.BRAND.SEEN.DURATION.RATIO", "name": "Video Brand Seen Duration Ratio", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Video Brand Seen Duration Ratio", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_BRANDS", "column_name": "SEEN_DURATION_RATIO", "data_length": 40, "description": "Brand Seen Duration Ratio", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.BRANDS", "parent_table_name": "Brands", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "name": "Speeches", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 116, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.ID", "name": "SpeechText Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "SpeechText Id", "values": [{"value": {"type": "int", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "ID", "data_length": 40, "description": "SpeechText Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXT", "name": "Speech Text", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Kinder"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Speech Text", "values": [{"value": {"type": "string", "value": "Kinder"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXT", "data_length": 1000, "description": "Speech Text", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.TEXTTYPE", "name": "Speech Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "OCR"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Speech Type", "values": [{"value": {"type": "string", "value": "OCR"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "TEXTTYPE", "data_length": 40, "description": "Speech Type", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.START TIME", "name": "Speech Start Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "0:00:09"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Speech Start Time", "values": [{"value": {"type": "string", "value": "0:00:09"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "START_TIME", "data_length": 40, "description": "Speech Start Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEECH.END TIME", "name": "Speech End Time", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "0:00:09.04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Speech End Time", "values": [{"value": {"type": "string", "value": "0:00:09.04"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEECHES", "column_name": "END_TIME", "data_length": 40, "description": "Speech End Time", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEECHES", "parent_table_name": "Speeches", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}, {"id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "name": "Speakers", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 122, "metadata_element_list": [{"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.ID", "name": "Speaker Id", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Id", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "INTEGER", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "ID", "data_length": 40, "description": "Speaker Id", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.NAME", "name": "Speaker Name", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Name", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "NAME", "data_length": 100, "description": "Speaker Name", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "ARTESIA.FIELD.MEDIAANALYSIS.VIDEO.SPEAKER.APPEARANCES", "name": "Speaker Appearances", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Speaker Appearances", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": false, "searchable": false, "table_name": "OTMM_MA_VIDEO_SPEAKERS", "column_name": "APPEARANCES", "data_length": 0, "description": "Speaker Appearances", "displayable": false, "multilingual": false, "system_field": true, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "ARTESIA.TABLE.MEDIA ANALYSIS.VIDEO.SPEAKERS", "parent_table_name": "Speakers", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "FERRERO.FIELDGROUP.LOCALASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200057, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "name": "Local Association", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1239, "metadata_element_list": [{"id": "FERRERO.FIELD.COUNTRY", "name": "LOCAL COUNTRY", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "LOCAL COUNTRY", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_COUNTRY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.USER", "name": "USER", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "USER", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_USER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.ASSOCIATION", "name": "TYPE OF ASSOCIATION", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "TYPE OF ASSOCIATION", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_ASSOCIATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "FERRERO.FIELD.VALUE", "name": "VALUE", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "VALUE", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_LOCAL_ASSOCIATION", "column_name": "FERRERO_VALUE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "FERRERO.TABULAR.FIELD.ASSOCIATION", "parent_table_name": "Local Association", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "CG.CATEGORY.FADEL ASSET INFORMATION", "name": "Rights Asset Information", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200064, "metadata_element_list": [{"id": "CG.FIELD.RIGHTS MANAGED", "name": "Fadel IP Rights", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fadel IP Rights", "enabled": true, "options": "", "domained": true, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_RIGHTS_MANAGED_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGED", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.NEEDS RIGHTS MANAGEMENT", "name": "Needs Rights Management", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "description": "10", "field_value": {"type": "string", "value": "N"}, "display_value": "No", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Needs Rights Management", "enabled": true, "options": "", "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_NEEDS_RIGHTS_MANAGEMENT_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "NEEDS_RIGHTS_MANAGEMENT", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.RIGHTS MANAGEMENT DESCRIPTION", "name": "Rights Management Description", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Rights Management Description", "enabled": true, "options": "", "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGEMENT_DESCRIPTION", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.RIGHTS MANAGEMENT STATUS", "name": "Rights Management Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Rights Management Status", "enabled": true, "options": "", "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_RIGHTS_MANAGEMENT_STATUS_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "RIGHTS_MANAGEMENT_STATUS", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.FORCE SYNC", "name": "Force Sync", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Force Sync", "enabled": true, "options": "", "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "CG.DOMAIN.CG_FORCE_SYNC_LU", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "FORCE_SYNC", "data_length": 100, "displayable": false, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "CG.FIELD.LAST SYNC TIME", "name": "Date of last data sync", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Date of last data sync", "enabled": true, "options": "", "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_ASSET_INFORMATION_MD", "column_name": "LAST_SYNC_TIME", "data_length": 100, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "validation_rule": "", "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}, {"id": "CG.CATEGORY.FADEL RIGHTS INFORMATION", "name": "Rights Information", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200065, "metadata_element_list": [{"id": "CG.TABLE.RIGHTS", "name": "Rights", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1256, "metadata_element_list": [{"id": "CG.FIELD.RIGHT TERRITORIES", "name": "Territory", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Territory", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "TERRITORY", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT USES", "name": "Use", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Use", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "USAGE", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT IN DATE", "name": "In Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "In Date", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "IN_DATE", "data_length": 10, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.RIGHT OUT DATE", "name": "Out Date", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Out Date", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_RIGHTS_TMD", "column_name": "OUT_DATE", "data_length": 10, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "CG.TABLE.RIGHTS", "validation_rule": "", "parent_table_name": "Rights", "saved_values_behavior_mode": 0}]}]}, {"id": "CG.CATEGORY.FADEL AGREEMENTS AND PARTIES", "name": "Agreements and Parties", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 200067, "metadata_element_list": [{"id": "CG.TABLE.PARTIES.AGREEMENTS VW", "name": "Customized Table Parties and Agreements", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 1258, "metadata_element_list": [{"id": "CG.FIELD.AGREEMENT NUMBER VW", "name": "Agreement Number ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Number ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_NUMBER", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT DESCRIPTION VW", "name": "Agreement Description ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Description ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_DESCRIPTION", "data_length": 2000, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 1, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT START DATE VW", "name": "Agreement Start Date ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement Start Date ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_START_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 2, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.AGREEMENT END DATE VW", "name": "Agreement End Date ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Agreement End Date ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "DATE", "edit_type": "DATE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "AGREEMENT_END_DATE", "data_length": 20, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 3, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY NAME VW", "name": "Party Name ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Name ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_NAME", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 4, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY ROLE VW", "name": "Party Role ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Role ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CLOB", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_ROLE", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 5, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY EMAIL ADDRESS VW", "name": "Party Email Address ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Email Address ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_EMAIL_ADDRESS", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 6, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PARTY PHONE NUMBER VW", "name": "Party Phone Number ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Party Phone Number ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PARTY_PHONE_NUMBER", "data_length": 500, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 7, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}, {"id": "CG.FIELD.PRIMARY PARTY CONTACT VW", "name": "Primary Party Contact ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Primary Party Contact ", "values": [], "enabled": true, "options": "", "tabular": true, "domained": false, "editable": false, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "CG_FADEL_PARTIES_AGRMNTS_VIEW", "column_name": "PRIMARY_PARTY_CONTACT", "data_length": 200, "displayable": true, "instructions": "", "multilingual": false, "system_field": false, "default_value": "", "trigger_field": false, "meta_table_seq": 8, "parent_table_id": "CG.TABLE.PARTIES.AGREEMENTS VW", "validation_rule": "", "parent_table_name": "Customized Table Parties and Agreements", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}]}, {"id": "ARTESIA.CATEGORY.VIDEO ATTRIBUTES", "type": "com.artesia.metadata.MetadataCategory", "legacy_id": 0, "metadata_element_list": [{"id": "ARTESIA.FIELD.VIDEO.FRAMERATE", "name": "Framerate", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 25.0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Framerate", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": false, "data_type": "NUMBER", "facetable": false, "searchable": false, "table_name": "VIDEO_PARENT_ASSETS", "column_name": "FRAMERATE", "data_length": 0, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.VIDEO.START SMPTE", "name": "Start Time SMPTE", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00:00:00:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Start Time SMPTE", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "VIDEO_ASSETS", "column_name": "START_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.END SMPTE", "name": "End Time SMPTE", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00:00:09:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "End Time SMPTE", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "VIDEO_ASSETS", "column_name": "END_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}, {"id": "ARTESIA.FIELD.VIDEO.START MSEC", "name": "Start Time MSEC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 0}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Start Time MSEC", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": false, "data_type": "NUMBER", "facetable": false, "searchable": false, "table_name": "VIDEO_ASSETS", "column_name": "START_MSEC", "data_length": 0, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.VIDEO.END MSEC", "name": "End Time MSEC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 9040}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "End Time MSEC", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": false, "data_type": "NUMBER", "facetable": false, "searchable": false, "table_name": "VIDEO_ASSETS", "column_name": "END_MSEC", "data_length": 0, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.VIDEO.CLIP PARENT ID", "name": "Clip Parent Id", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Clip Parent Id", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": false, "data_type": "CHAR", "facetable": false, "searchable": false, "table_name": "VIDEO_ASSETS", "column_name": "PARENT_UOI_ID", "data_length": 40, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.VIDEO.LOW RES MIME TYPE", "name": "Low Resolution Mimetype", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "video/mp4"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Low Resolution Mimetype", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": false, "data_type": "CHAR", "facetable": false, "searchable": false, "table_name": "VIDEO_URLS", "column_name": "LO_RES_MIME_TYPE", "data_length": 80, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.VIDEO.VIDEO REFERENCE", "name": "Video Reference", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 36313}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Video Reference", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": false, "data_type": "NUMBER", "facetable": false, "searchable": false, "table_name": "VIDEO_ASSETS", "column_name": "VIDEO_REFERENCE", "data_length": 0, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.VIDEO.DURATION MSEC", "name": "Duration MSEC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "decimal", "value": 9040}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Duration MSEC", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": false, "data_type": "NUMBER", "facetable": false, "searchable": false, "table_name": "VIDEO_ASSETS", "column_name": "DURATION_MSEC", "data_length": 0, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.VIDEO.DURATION SMPTE", "name": "Duration SMPTE", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00:00:09:00"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Duration SMPTE", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": false, "data_type": "CHAR", "facetable": false, "searchable": false, "table_name": "VIDEO_ASSETS", "column_name": "DURATION_SMPTE", "data_length": 11, "displayable": false, "multilingual": false, "system_field": false, "trigger_field": false}, {"id": "ARTESIA.FIELD.VIDEO.CLIP PARENT START SMPTE", "name": "Clip Parent Start Time SMPTE", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Clip Parent Start Time SMPTE", "enabled": true, "domained": false, "editable": false, "required": true, "sortable": true, "data_type": "CHAR", "facetable": false, "searchable": true, "table_name": "VIDEO_ASSETS", "column_name": "PARENT_START_SMPTE", "data_length": 11, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}]}], "has_multilingual_fields": false}, "mime_type": "video/mp4", "path_list": [{"parents": [{"id": "d4d9835db002b9992125246f2abb7117c99ab016", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "d4d9835db002b9992125246f2abb7117c99ab016", "sequence_number": 0}, {"id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "name": "MASTER CAMP FER ROCHER 12.01.2", "container_state": "NORMAL", "original_uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "sequence_number": 0}, {"id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "name": "01. DE - Rocher ", "container_state": "NORMAL", "original_uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "sequence_number": 0}, {"id": "091216b59cad7f1ea815164c26db27e350c54023", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "sequence_number": 0}, {"id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "name": "01. Rocher", "container_state": "NORMAL", "original_uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "sequence_number": 0}, {"id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "name": "01. Ferrero Rocher", "container_state": "NORMAL", "original_uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "sequence_number": 0}, {"id": "93b0968611de11160ed068afeb9930b9965bd5ff", "name": "03. Premium Chocolate", "container_state": "NORMAL", "original_uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "sequence_number": 0}, {"id": "4b05a895330aa2fb6046f59731aba5dd93858431", "name": "LOCADAPLOCCOMM - FER ROCHER 4", "container_state": "NORMAL", "original_uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "sequence_number": 0}, {"id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "name": "25-26", "container_state": "NORMAL", "original_uoi_id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "sequence_number": 0}, {"id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "name": "02. Campaign", "container_state": "NORMAL", "original_uoi_id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "sequence_number": 0}, {"id": "f31042cfc487f066486c46527c076b8ee6618ceb", "name": "01. Standard", "container_state": "NORMAL", "original_uoi_id": "f31042cfc487f066486c46527c076b8ee6618ceb", "sequence_number": 0}, {"id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "name": "02. Sweden", "container_state": "NORMAL", "original_uoi_id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "sequence_number": 0}, {"id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "name": "SCANDINAVIA", "container_state": "NORMAL", "original_uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "sequence_number": 0}, {"id": "f2649309eb916c5c25bb309e3db061042c3eecca", "name": "01. MC - Rocher", "container_state": "NORMAL", "original_uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "sequence_number": 0}, {"id": "091216b59cad7f1ea815164c26db27e350c54023", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "sequence_number": 0}, {"id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "name": "01. Rocher", "container_state": "NORMAL", "original_uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "sequence_number": 0}, {"id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "name": "01. Ferrero Rocher", "container_state": "NORMAL", "original_uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "sequence_number": 0}, {"id": "93b0968611de11160ed068afeb9930b9965bd5ff", "name": "03. Premium Chocolate", "container_state": "NORMAL", "original_uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "sequence_number": 0}], "complete": true, "sequence_number": 2, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "d4d9835db002b9992125246f2abb7117c99ab016", "name": "05. Final Assets", "container_state": "NORMAL", "original_uoi_id": "d4d9835db002b9992125246f2abb7117c99ab016", "sequence_number": 0}, {"id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "name": "MASTER CAMP FER ROCHER 12.01.2", "container_state": "NORMAL", "original_uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "sequence_number": 0}, {"id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "name": "01. DE - Rocher ", "container_state": "NORMAL", "original_uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "sequence_number": 0}, {"id": "bfbc248a12a4bf0382406620f0d9ec41ff42e35e", "name": "01. Ferrero Rocher", "container_state": "NORMAL", "original_uoi_id": "bfbc248a12a4bf0382406620f0d9ec41ff42e35e", "sequence_number": 0}, {"id": "3d7debea6815ae46c9598191b1c645007666292a", "name": "03 . Premium Chocolate", "container_state": "NORMAL", "original_uoi_id": "3d7debea6815ae46c9598191b1c645007666292a", "sequence_number": 0}, {"id": "c0bb10be2b8f96ee4d27a2dfb7e0d03de68cf114", "name": "DE", "container_state": "NORMAL", "original_uoi_id": "c0bb10be2b8f96ee4d27a2dfb7e0d03de68cf114", "sequence_number": 0}, {"id": "b124e1ed196028bdd0e2c093e28078ca8d9ad462", "name": "EU", "container_state": "NORMAL", "original_uoi_id": "b124e1ed196028bdd0e2c093e28078ca8d9ad462", "sequence_number": 0}, {"id": "68ce80e8c8a30badb82dabfd823886a6fa6fe309", "name": "Y - Geography", "container_state": "NORMAL", "original_uoi_id": "68ce80e8c8a30badb82dabfd823886a6fa6fe309", "sequence_number": 0}], "complete": true, "sequence_number": 0, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}, {"parents": [{"id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "name": "00. Master Assets", "container_state": "NORMAL", "original_uoi_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "sequence_number": 0}, {"id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "name": "Read Only", "container_state": "NORMAL", "original_uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "sequence_number": 0}, {"id": "23b155c32d5c6142914b41458234c100812bbec8", "name": "Oliver", "container_state": "NORMAL", "original_uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "sequence_number": 0}, {"id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "name": "Z - Exchange", "container_state": "NORMAL", "original_uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "sequence_number": 0}], "complete": true, "sequence_number": 2, "tree_descriptor": {"tree_id": "ARTESIA.PUBLIC.TREE", "detached": false}}], "creator_id": "1003", "asset_state": "NORMAL", "checked_out": false, "folder_path": "", "content_size": 3080691, "content_type": "VIDEO", "content_state": "NORMAL", "date_imported": "2026-01-14T14:23:41.74+01:00", "import_job_id": 225736, "streaming_url": "https://ppr.dam.ferrero.com/video/data/repository/original/vol0/227/0519db2862ae6ca92d8c1c366647880e178494ac_proxy.mp4", "subscribed_to": false, "collection_ids": [], "latest_version": true, "legacy_model_id": 116, "content_editable": true, "content_sub_type": "WHOLE", "import_user_name": "bizAdmin", "date_last_updated": "2026-01-14T14:28:02.513+01:00", "metadata_model_id": "ECOMMERCE", "original_asset_id": "6341dedf8117677336cb66fa9a7ce94c4c2d10d1", "rendition_content": {"preview_content": {"id": "38b08a5df7d408745c122ee7df0675ffbb74258b", "url": "/otmmapi/v6/renditions/38b08a5df7d408745c122ee7df0675ffbb74258b", "name": "kinder-joy_videoE2E.mp4", "width": 640, "height": 360, "mime_type": "video/mp4", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "PREVIEW", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\227\\\\0519db2862ae6ca92d8c1c366647880e178494ac_proxy.mp4", "content_size": 1177223, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "thumbnail_content": {"id": "1b785415362dd9a5f56e632d76bb7492c88c50c8", "url": "/otmmapi/v6/renditions/1b785415362dd9a5f56e632d76bb7492c88c50c8", "name": "1b785415362dd9a5f56e632d76bb7492c88c50c8.jpg", "width": 500, "height": 282, "mime_type": "image/jpeg", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "THUMBNAIL", "content_path": "data\\\\repository\\\\thumb\\\\vol0\\\\201\\\\1b785415362dd9a5f56e632d76bb7492c88c50c8_1b785415362dd9a5f56e632d76bb7492c88c50c8.jpg", "content_size": 13491, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "video_rollover_content": {"id": "996b4cc7451dfd5ed970534d0c69a34c3d0f87b5", "url": "/otmmapi/v6/renditions/996b4cc7451dfd5ed970534d0c69a34c3d0f87b5", "name": "kinder-joy_videoE2E.GIF", "width": 500, "height": 282, "mime_type": "image/gif", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "ROLLOVER", "content_path": "data\\\\repository\\\\rollover\\\\vol0\\\\16\\\\996b4cc7451dfd5ed970534d0c69a34c3d0f87b5_rollover.gif", "content_size": 4110720, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}}, "asset_content_info": {"master_content": {"id": "cbeb3d5f63f41cd6ff573003da1acaf7889e7de1", "url": "/otmmapi/v6/renditions/cbeb3d5f63f41cd6ff573003da1acaf7889e7de1", "name": "kinder-joy_videoE2E.mp4", "width": -1, "height": -1, "mime_type": "video/mp4", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\227\\\\kinder-joy_videoE2E_cbeb3d5f63f41cd6ff573003da1acaf7889e7de1.mp4", "content_size": 3080691, "unit_of_size": "BYTES", "content_checksum": "b36d1e9f85efe2c69693dde123d6c3b2", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "supporting_content": [{"id": "0519db2862ae6ca92d8c1c366647880e178494ac", "url": "/otmmapi/v6/renditions/0519db2862ae6ca92d8c1c366647880e178494ac", "name": "kinder-joy_videoE2E.mp4", "width": 640, "height": 360, "mime_type": "video/mp4", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "SUPPORTING", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\227\\\\0519db2862ae6ca92d8c1c366647880e178494ac_proxy.mp4", "content_size": 1177223, "unit_of_size": "BYTES", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}]}, "asset_state_user_id": "1003", "master_content_info": {"id": "cbeb3d5f63f41cd6ff573003da1acaf7889e7de1", "url": "/otmmapi/v6/renditions/cbeb3d5f63f41cd6ff573003da1acaf7889e7de1", "name": "kinder-joy_videoE2E.mp4", "width": -1, "height": -1, "mime_type": "video/mp4", "content_data": {"temp_file": false, "data_source": "NO_CONTENT"}, "content_kind": "MASTER", "content_path": "data\\\\repository\\\\original\\\\vol0\\\\227\\\\kinder-joy_videoE2E_cbeb3d5f63f41cd6ff573003da1acaf7889e7de1.mp4", "content_size": 3080691, "unit_of_size": "BYTES", "content_checksum": "b36d1e9f85efe2c69693dde123d6c3b2", "content_manager_id": "ARTESIA.CONTENT.FILESYSTEM"}, "delivery_service_url": "https://ppr.dam.ferrero.com/adaptivemedia/rendition?id=6341dedf8117677336cb66fa9a7ce94c4c2d10d1", "product_associations": false, "security_policy_list": [{"id": 5467, "name": "Marketing Viewer", "status": "NORMAL", "created_by": "1003", "create_date": "2023-10-06T16:52:07.297+02:00", "description": "Marketing Viewer", "ownership_type": "PUBLIC"}, {"id": 9525, "name": "Premium Chocolate Local DE Editable Ferrero Rocher", "status": "NORMAL", "created_by": "1003", "create_date": "2024-11-26T10:08:39.973+01:00", "description": "Premium Chocolate Local DE Editable Ferrero Rocher", "ownership_type": "PUBLIC"}], "thumbnail_content_id": "1b785415362dd9a5f56e632d76bb7492c88c50c8", "content_state_user_id": "1003", "content_state_user_name": "OTMM BusinessAdmin", "asset_lock_state_user_id": "1003", "metadata_state_user_name": "OTMM BusinessAdmin", "progressive_download_url": "https://ppr.dam.ferrero.com/video/data/repository/original/vol0/227/0519db2862ae6ca92d8c1c366647880e178494ac_proxy.mp4", "access_control_descriptor": {"permissions_map": {"entry": [{"key": "text.securityPolicy.permission.Custom04Permission", "value": true}, {"key": "text.securityPolicy.permission.ContentEditPermission", "value": true}, {"key": "text.securityPolicy.permission.AssetViewPermission", "value": true}, {"key": "text.securityPolicy.permission.ProjectViewPermission", "value": true}, {"key": "text.securityPolicy.permission.MembershipEditPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom03Permission", "value": true}, {"key": "text.securityPolicy.permission.MetaDataEditPermission", "value": true}, {"key": "text.securityPolicy.permission.EditParentsPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom02Permission", "value": true}, {"key": "text.securityPolicy.permission.ExportPermission", "value": true}, {"key": "text.securityPolicy.permission.SummaryViewPermission", "value": true}, {"key": "text.securityPolicy.permission.PreviewViewPermission", "value": true}, {"key": "text.securityPolicy.permission.SubscribePermission", "value": true}, {"key": "text.securityPolicy.permission.DeleteAssetPermission", "value": true}, {"key": "text.securityPolicy.permission.Custom01Permission", "value": true}]}}, "content_lock_state_user_id": "1003", "asset_state_last_update_date": "2026-01-14T14:28:02.513+01:00", "content_lock_state_user_name": "bizAdmin", "metadata_lock_state_user_name": "bizAdmin", "content_state_last_update_date": "2026-01-14T14:23:41.99+01:00", "inherited_metadata_collections": [{"container_id": "d4d9835db002b9992125246f2abb7117c99ab016", "container_name": "05. Final Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "d4d9835db002b9992125246f2abb7117c99ab016", "originator_id": "d4d9835db002b9992125246f2abb7117c99ab016", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "05. Final Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "container_name": "MASTER CAMP FER ROCHER 12.01.2", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "MASTER CAMP FER ROCHER 12.01.2"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000783"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "MASTER_CAMP_FER_ROC_CQ_LG_DE_PRE_0000783"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local comm on global brands"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Master Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Master Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2026/2027"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "1003"}, "display_value": "BusinessAdmin, OTMM (bizAdmin, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "B1"}, "display_value": "Master campaign ready for re-mastering", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ADDITIONALAPPROVER", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.LICENSING", "tabular": false, "value_id": {"uoi_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "originator_id": "afa66995c9e252f85a4baac1e51cd1a5cd75caca", "inherited_field_id": "d0ef653291e269a7d1ddf0ebfedd1c6ad70b1c59"}, "metadata_element": {"id": "FERRERO.FIELD.LICENSING", "name": "Campaign License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "LICENSING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}}]}, {"container_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "container_name": "01. DE - Rocher ", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "bb01cf85444107f22341d2b88421f0cbaade0bf9"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E006"}, "display_value": "GERMANY", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Local DE Editable Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Premium Chocolate Local DE Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "8f497ce53d23899c7c09aa5a7ca69c9f55c3a62d"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E64"}, "display_value": "GERMANY", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "ca70a6d55e4277ecbef2a01a593c614501cbcf74"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "3e9d669ab1047383d0416ba40af75744148c94c8"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0e241fc386dcd91baa31a409e297169fe4a352c2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "2e3e0f2be0e487b540d9b63cb8c0e9ed9c6b1bb6"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "359c98154f230a60acc6b4eb048e129411d7a778"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "b3698893fc223e8371f4e4c0d560d0536c724a09"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "e92f9f10c0c29dda8261218c2c72a0baa66472f2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "15dff42c3b196ba3ae5b3c2ea33f00e347e6f654"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Extended Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "0ae044cd9dddf86cd9406c9edc3996b18c430be0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "name": "AMMC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AMMC", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LOCAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "7806fed6127b50c21f6b03e1f7b63f3dedc1e8d1"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "RMMC", "values": [{"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "4c8a2d6e178638bfacfeaf3f7f6f1000304693a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "name": "Product Asset Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Product Asset Approval Ferrero Rocher Local DE "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Asset Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCT_ASSET_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local comm on global brands"}, "display_value": "Local comm on global brands", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "tabular": false, "value_id": {"uoi_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "originator_id": "e9b665c0f7df492692a39ab417c6a284fa20452f", "inherited_field_id": "5a1ae26558efdc03336c0df838dd9e7c2a51c687"}, "metadata_element": {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "name": "Market Unit", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market Unit", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETUNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "MARKET_UNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "091216b59cad7f1ea815164c26db27e350c54023", "container_name": "EU", "container_type_id": "GEOGRAPHYLOCAL", "container_type_name": "L4 - GEOGRAPHY LOCAL", "inherited_metadata_values": [{"id": "FERRERO.MARKET.FOLDER.GLOBAL", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "4c4d4bf36bf8b1ace55f990e78d6332a9cb20990"}, "metadata_element": {"id": "FERRERO.MARKET.FOLDER.GLOBAL", "name": "Global/Local (Marketing)", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "LOCAL"}, "display_value": "Local", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Global/Local (Marketing)", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.GLOBAL.LOCAL", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "GLOBALLOCAL", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_AREA", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "3dc200c993ab8263952dc6da1498026f615f45dd"}, "metadata_element": {"id": "MARKETING_AREA", "name": "AREA", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E010"}, "display_value": "EUROPE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "AREA", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "AREA", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "AREA", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "dc7749c3e113ec9e0b9e9a3840ea55673ca5e49f"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "f2d658a3829c2ea158ae70a4b4e7928bcf88f8e2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "972d0258a82de85672bd84d8af68cdb67ad3d3ca"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "1212505ad3fe4c9d7458568f3d95aeb4c4e5c37e"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "9d1dfdef55ff7a3eb03552988ddf729c7a0f5107"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "54f006eeb366121a29ee98da33d437615dcd34e0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "1fd8802010e30d44cebb2f3eb090b12ac550f97d"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "8b6e1d8f7dc3c4671cfc11a2914d838ca3ee3f3b"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "be0dc9a87262ee7fd165237b531ba3b7aa93a260"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "091216b59cad7f1ea815164c26db27e350c54023", "originator_id": "091216b59cad7f1ea815164c26db27e350c54023", "inherited_field_id": "2f99f0f0f9e43fb34df9222c8b73a86fb78e473e"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "RMMC", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "container_name": "01. Rocher", "container_type_id": "GLOBALBRAND", "container_type_name": "L3 - BRAND", "inherited_metadata_values": [{"id": "FERRERO.TABULAR.NEW.BRAND", "tabular": true, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "9bb1c183135f5240f09132aef59c4ea48c762381"}, "metadata_element": {"id": "FERRERO.TABULAR.NEW.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.BRAND", "name": "BRAND (Marketing)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF04"}, "display_value": "ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND (Marketing)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "EPF04"}, "display_value": "ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "BRAND", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_TABULAR_BRAND", "column_name": "BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.NEW.BRAND", "parent_table_name": "BRAND (Marketing)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "tabular": true, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "a37b13c02cba799378211e17b73234a0d836f9b6"}, "metadata_element": {"id": "FERRERO.TABULAR.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.TABULAR.FIELD.HARMONIZEDBRAND", "name": "BRAND(HARMONIZED)", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "CQ"}, "display_value": "FERRERO ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "BRAND(HARMONIZED)", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "CQ"}, "display_value": "FERRERO ROCHER", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": true, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.HARMONIZEDBRAND", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_HARMONIZEDBRAND", "column_name": "HARMONIZEDBRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.HARMONIZEDBRAND", "parent_table_name": "BRAND(HARMONIZED)", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "AGENCY.COLLABORATION", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "183d6e0957a9940f9b18ef44f46d957802b63397"}, "metadata_element": {"id": "AGENCY.COLLABORATION", "name": "Agency collaboration", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency collaboration", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "AGENCY_COLLABORATION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "AGENCY.SHARING", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "d0e2b725ddfdc452cc3ba750bbe8ec059c6b01ba"}, "metadata_element": {"id": "AGENCY.SHARING", "name": "Agency sharing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency sharing", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "AGENCY_SHARING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "CONTENT.SCALING.AGENCYNAME", "tabular": false, "value_id": {"uoi_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "originator_id": "0fb3dfd1617ba2a795c68406a2bf10ff999c7bd4", "inherited_field_id": "f9dfa695cc5ef8cd3fafada4e44cfdaa1522d58a"}, "metadata_element": {"id": "CONTENT.SCALING.AGENCYNAME", "name": "Content Scaling agency name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Content Scaling agency name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENTSCALING_AGENCYNAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "container_name": "01. Ferrero Rocher", "container_type_id": "GLOBALSUBCATEGORY", "container_type_name": "L2 - SUBCATEGORY", "inherited_metadata_values": [{"id": "MARKETING_SUBCATEGORY", "tabular": false, "value_id": {"uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "originator_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "inherited_field_id": "3000ad591e09b5c75f85fc2ccbb9ebeb31b3ab78"}, "metadata_element": {"id": "MARKETING_SUBCATEGORY", "name": "SUBCATEGORY", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Mart-Ferrero-Rocher"}, "display_value": "Ferrero Rocher", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "SUBCATEGORY", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "SUBCATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "SUBCATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "tabular": true, "value_id": {"uoi_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "originator_id": "0e4ab980d4257df93e0cec1ef58fb31ebf7f8b99", "inherited_field_id": "2c751ce760d88c0e271925ea5149348106944bfa"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.SUBCATEGORY OWNER", "name": "Subcategory Owner", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Subcategory Owner", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_SUBCATEGORY_OWNER_TM", "column_name": "SUBCATEGORY_OWNER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.SUBCATEGORY OWNER", "parent_table_name": "Subcategory Owner", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "container_name": "03. Premium Chocolate", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "originator_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E06"}, "display_value": "PREMIUM CHOCOLATE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "originator_id": "93b0968611de11160ed068afeb9930b9965bd5ff", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final Approver BPS ", "values": [{"value": {"type": "string", "value": "Premium Chocolate Approver Global "}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "container_name": "00. Master Assets", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "originator_id": "ffcd44c032f29a1b69ad592bf6140949de05a5da", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "00. Master Assets"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "container_name": "LOCADAPLOCCOMM - FER ROCHER 4", "container_type_id": "GLOBALCAMPAING", "container_type_name": "L7+ - CAMPAIGN", "inherited_metadata_values": [{"id": "FERRERO.FIELD.CAMPAIGN_NAME", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "48b6a78214a191091add02d8ecb4898f184e5c39"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN_NAME", "name": "Campaign Concept ", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "LOCADAPLOCCOMM - FER ROCHER 4"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Concept ", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN ID", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "109155c80f0b7f24356620ecee151f89b6ae8c04"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN ID", "name": "Campaign ID", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000794"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign ID", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_ID", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN NAME", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "a0c59ce9715e1ad953befaa996a3d811b4b30ad6"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN NAME", "name": "Campaign Name", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "LOCADAPLOCCOMM_-__CQ_LAL_MLT_PRE_0000794"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Name", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "CAMPAIGN_NAME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.OCCASION", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "c5ea2647c9e7ec27249e7183ab03d09d2851586d"}, "metadata_element": {"id": "FERRERO.FIELD.OCCASION", "name": "Occasion", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "ALL YEAR (DEFAULT)"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Occasion", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "OCCASION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 5429, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TIMING", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "39f3130b5624baa5da5d40275bb4ffca9cbac4ec"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TIMING", "name": "Project Timing", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Timing", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT TIMING", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TIME", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 7243, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PROJECT TYPE", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "c96b98e9aa7bb4ebd99ea6bea7ba7637387d9263"}, "metadata_element": {"id": "FERRERO.FIELD.PROJECT TYPE", "name": "Project Nature", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Project Nature", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.PROJECT_TYPE", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_ASSET_DETAILS", "column_name": "PROJECT_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "9bbf303ae3cedac82eb359fe64b01e46ad66bf3c"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Local adaptation of local comm"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign Type", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "e29a54e1155d590aa1ef22e3cf14da1e33ed5da1"}, "metadata_element": {"id": "FERRERO.FIELD.GLOBAL CAMPAIGN REFERENCE", "name": "Master Reference​", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "C000000783"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Master Reference​", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "GLOBAL_CAMPAIGN_REFERENCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "705da22fa1bf2883f3df33e8262c456aed825ead"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_BRAND", "name": "Harmonized Brand", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Harmonized Brand", "values": [{"value": {"type": "string", "value": "FERRERO ROCHER"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_BRAND", "column_name": "CAMPAIGN_BRAND", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.BRAND", "parent_table_name": "Harmonized Brand", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "e436c410a772050fd1c4737b109994962e4731f4"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.CAMPAIGN_MARKET", "name": "Market", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "DK"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market", "values": [{"value": {"type": "string", "value": "DK"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "SE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "FI"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "NO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "IS"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, {"value": {"type": "string", "value": "GL"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_MARKET", "column_name": "CAMPAIGN_MARKET", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN.MARKET", "parent_table_name": "Market", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "e16e0508a3aae2a16c18608bd3ab1d43a444130b"}, "metadata_element": {"id": "FERRERO.FIELD.CAMPAIGN FISCAL YEAR", "name": "Fiscal Year", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "2025/2026"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Fiscal Year", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "FISCAL_YEAR_", "data_length": 200, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "994eca935d29a2416c4cde00a3c29a77b0b750dd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER", "name": "Brand Manager", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2797"}, "display_value": "Owner, Asset (AssetownerLoG, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2797"}, "display_value": "Owner, Asset (AssetownerLoG, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER", "column_name": "USERS_GLOBAL_BRAND_MANAGER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER", "parent_table_name": "Brand Manager", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "f7c93e644d0c27d57334e3e60f6903e7537a0449"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "GLOBAL.BRAND.MANAGER.TEAM", "name": "Brand Manager Team", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2797"}, "display_value": "Owner, Asset (AssetownerLoG, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Brand Manager Team", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "2797"}, "display_value": "Owner, Asset (AssetownerLoG, active)", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "ARTESIA.DOMAIN.USERS", "edit_type": "TYPE_AHEAD", "facetable": false, "searchable": true, "table_name": "FERRERO_GLOBAL_BRAND_MANAGER_T", "column_name": "USERS_GLOBAL_BRAND_MANAGER_T", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.GLOBAL.BRAND.MANAGER.TEAM", "parent_table_name": "Brand Manager Team", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "typeahead_num_min_chars": 2, "saved_values_behavior_mode": 0}]}}, {"id": "CONTENT.SCALING.STATUS", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "8a26ea7a6b8d64c1f71a7b101506065d2ee1dcce"}, "metadata_element": {"id": "CONTENT.SCALING.STATUS", "name": "Content Scaling Status", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "A2"}, "display_value": "Selected Master Assets sent to Agency", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Content Scaling Status", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.CONTENTSCALING.STATUS", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "CONTENT_SCALING_STATUS", "column_name": "CONTENT_SCALING_STATUS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": true, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "tabular": true, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "ecfc3f5ee3b8d966ef8e29e59aac5461dbd7f67f"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "name": "Additional Approver", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.ADDITIONALAPPROVER", "name": "Additional approver", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Additional approver", "values": [], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.DOMAIN.ADDITIONALAPPROVER", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_ADDITIONAL_APPROVER", "column_name": "ADDITIONAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.ADDITIONALAPPROVER", "parent_table_name": "Additional Approver", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.LICENSING", "tabular": false, "value_id": {"uoi_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "originator_id": "4b05a895330aa2fb6046f59731aba5dd93858431", "inherited_field_id": "d0ef653291e269a7d1ddf0ebfedd1c6ad70b1c59"}, "metadata_element": {"id": "FERRERO.FIELD.LICENSING", "name": "Campaign License", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "NO"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Campaign License", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_CAMPAIGN_DATA_CN", "column_name": "LICENSING", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false}}]}, {"container_id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "container_name": "25-26", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "originator_id": "ddfd812c82c52c2f8264f6e01b14fd933e102c88", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "25-26"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "container_name": "02. Campaign", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "originator_id": "2e4a2b48fb9ee5de8df61be6238e9de2780f894d", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "02. Campaign"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "f31042cfc487f066486c46527c076b8ee6618ceb", "container_name": "01. Standard", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "f31042cfc487f066486c46527c076b8ee6618ceb", "originator_id": "f31042cfc487f066486c46527c076b8ee6618ceb", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "01. Standard"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "container_name": "02. Sweden", "container_type_id": "GLOBALGENERIC", "container_type_name": "L7+ - GENERIC", "inherited_metadata_values": [{"id": "INER_NAME_GENERIC", "tabular": false, "value_id": {"uoi_id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "originator_id": "e15ef6c097f7178e201c807a9ee233738192c6b9", "inherited_field_id": "06464bb3a33384a06eab8fc9d2d2521ac696aaad"}, "metadata_element": {"id": "INER_NAME_GENERIC", "name": "GENERIC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "02. Sweden"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "GENERIC", "enabled": true, "domained": false, "editable": false, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "UOIS", "column_name": "NAME", "data_length": 256, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "container_name": "SCANDINAVIA", "container_type_id": "GLOBALMARKETUNIT", "container_type_name": "L6 - MARKET UNIT", "inherited_metadata_values": [{"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "24a6615bcce9adc5a098c76c29b8e8baba61a9a3"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E22"}, "display_value": "SCANDINAVIA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "13063087b81ea172db42e69ed8e8fa013cd5bfe0"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Local SCANDINAVIA Editable Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "bf49ba2a40d0d0dccee4d5de7381659b106dd89a"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Premium Chocolate Local SCANDINAVIA Ferrero Rocher"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "8e4d311466783d8215a38b08bee3cb2b3bfcf40f"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "9e88b5726590ab30642999a28a301e3fbcebc762"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.VISIBILITY.SECURITY", "name": "Published Security Policy - Restricted Visibility", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Security Policy - Restricted Visibility", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_VISIBILITY_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "3c0070e420882e3e18f6097811cb60a67239003b"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Local SCANDINAVIA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "7f3c1933b61e900457ea6e2aab750303882873d4"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "b0c960759e48c0fcdcb650417179a614da95e866"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Local SCANDINAVIA"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "6f603fcc63415e266dc35cf2314d31357a2966bf"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "3c12728b06ecfafeeb74482ea7b7296b180765f9"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "dc9b8ffa0591a1b2956c07fa5dc10ff477c84f4e"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "495fa4f08769a021cfa907dfb7a903fade9bd19a"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "e3b647e172a89e1e7cbdd2964faff1bca8dcf520"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "originator_id": "8099520de8f8978ad61f8a1914f212dde3c95b4a", "inherited_field_id": "6870cca056b54cd400a9fbd4fe75513e69cedcdd"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "RMMC", "values": [{"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}, {"container_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "container_name": "01. MC - Rocher", "container_type_id": "GLOBALREGION", "container_type_name": "L5 - REGION", "inherited_metadata_values": [{"id": "MARKETING_REGION", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "bb01cf85444107f22341d2b88421f0cbaade0bf9"}, "metadata_element": {"id": "MARKETING_REGION", "name": "REGION", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E023"}, "display_value": "MULTI COUNTRY EUROPE", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "REGION", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "REGION", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "REGION", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "c814d6341570f1c70e82a4137e7a04a1d2abf5c4"}, "metadata_element": {"id": "FERRERO.FIELD.SECURITY.INHERITANCE", "name": "Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "2b4e0bd234941a1dc3a9be4e5f1a0e5c5adac132"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "0ff89d75c7ec59e895917ea05b02e6553d6e8b38"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.RESTRICTED.FOLDER.SECURITY", "name": "Viewer Security Policy - Restricted Folder", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Viewer Security Policy - Restricted Folder", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "RESTRICTED_FOLDER_SECURITY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "MARKETING_MARKET_UNIT", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "8f497ce53d23899c7c09aa5a7ca69c9f55c3a62d"}, "metadata_element": {"id": "MARKETING_MARKET_UNIT", "name": "Market Unit2", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "E22"}, "display_value": "SCANDINAVIA", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Market Unit2", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "MARKET_UNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "MARKETUNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "ca70a6d55e4277ecbef2a01a593c614501cbcf74"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTOR", "name": "Legal contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "3e9d669ab1047383d0416ba40af75744148c94c8"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL CONTRIBUTORBRIEFANDCORE", "name": "Legal contributor Brief and Core", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Legal Contributor Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal contributor Brief and Core", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_CONTRIBUTOR_BRIEFANDCORE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "0e241fc386dcd91baa31a409e297169fe4a352c2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR", "name": "IA&CC contributor", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "2e3e0f2be0e487b540d9b63cb8c0e9ed9c6b1bb6"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.IACC CONTRIBUTOR BRIEF", "name": "IA&CC contributor Brief", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "IA&CC Contributor Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "IA&CC contributor Brief", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "IA_CC_CONTRIBUTOR_BRIEF", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "359c98154f230a60acc6b4eb048e129411d7a778"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LICENSE APPROVER", "name": "License Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "License Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LICENSE_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "b3698893fc223e8371f4e4c0d560d0536c724a09"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LEGAL IP APPROVER", "name": "Legal IP approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Legal IP approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LEGAL_IP_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "e92f9f10c0c29dda8261218c2c72a0baa66472f2"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.FINAL APPROVER", "name": "Final approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Global"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Final approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "FINAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "15dff42c3b196ba3ae5b3c2ea33f00e347e6f654"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.BRIEF APPROVER", "name": "Brief approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Brief approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "BRIEF_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "0ae044cd9dddf86cd9406c9edc3996b18c430be0"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.LOCAL APPROVER", "name": "AMMC", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Premium Chocolate Approver Local Europe"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "AMMC", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": true, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "LOCAL_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.RMMC", "tabular": true, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "7806fed6127b50c21f6b03e1f7b63f3dedc1e8d1"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.RMMC", "name": "RMMC", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "RMMC", "values": [{"value": {"type": "string", "value": "RMMC Premium Chocolate Local DE"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_RMMC", "column_name": "RMMC", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.RMMC", "parent_table_name": "RMMC", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "4c8a2d6e178638bfacfeaf3f7f6f1000304693a1"}, "metadata_element": {"id": "FERRERO.MARKETING.FIELD.PRODUCT ASSET APPROVER", "name": "Product Asset Approver", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Product Asset Approver", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET_DETAILS", "column_name": "PRODUCT_ASSET_APPROVER", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "restriction_id": 9713, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "tabular": true, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "f42ea39f55edc300855bfd17df17b929709cf0d7"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "USERS.CAMPAIGN.TYPE", "name": "Campaign Type", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of local comm"}, "display_value": "Local adaptation of local comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Campaign Type", "values": [{"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of local comm"}, "display_value": "Local adaptation of local comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "Local adaptation of global comm"}, "display_value": "Local adaptation of global comm", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}], "enabled": true, "tabular": true, "domained": true, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "domain_id": "FERRERO.CAMPAIGNFOLDER.CAMPTYPE", "edit_type": "COMBO", "facetable": false, "searchable": true, "table_name": "FERRERO_USERS_CAMPAIGN_TYPE", "column_name": "USERS_CAMPAIGN_TYPE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "parent_table_id": "FERRERO.TABULAR.FIELD.CAMPAIGN TYPE", "parent_table_name": "Campaign Type", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}, {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "tabular": false, "value_id": {"uoi_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "originator_id": "f2649309eb916c5c25bb309e3db061042c3eecca", "inherited_field_id": "5a1ae26558efdc03336c0df838dd9e7c2a51c687"}, "metadata_element": {"id": "FERRERO.FIELD.ECOMMERCE.MARKETUNIT", "name": "Market Unit", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Market Unit", "enabled": true, "domained": true, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "domain_id": "FERRERO.MARKETUNIT", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "ECOMMERCE", "column_name": "MARKET_UNIT", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "container_name": "Read Only", "container_type_id": "L3 - Agency Structure", "container_type_name": "L3 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "55530f721f18c847e35d7c828edf53461b5014b0"}, "metadata_element": {"id": "FERRERO.FIELD.MARKETING.SECURITY.FOLDER INHERITANCE", "name": "Folder Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Folder Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Folder Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "FOLDER_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "330bb6f68316aab5c45f9fe34e047cce573c67cc"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY.SECURITY.INHERITANCE", "name": "Agency Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "AGENCY_SECURITY_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "tabular": false, "value_id": {"uoi_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "originator_id": "51087883d7828b5e8c0dba5bfcf907b61439fca4", "inherited_field_id": "e30e90d694f9935d4c15c4c78891beed8853a272"}, "metadata_element": {"id": "FERRERO.FIELD.PUBLISHED.ASSET.SP", "name": "Published Asset Security Inheritance", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver Viewer"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Published Asset Security Inheritance", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "MARKETING_ASSET", "column_name": "PUBLISHED_ASSET_SP_INHERITANCE", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "23b155c32d5c6142914b41458234c100812bbec8", "container_name": "Oliver", "container_type_id": "L2 - Agency Structure", "container_type_name": "L2 - Agency Structure", "inherited_metadata_values": [{"id": "FERRERO.FIELD.AGENCY", "tabular": false, "value_id": {"uoi_id": "23b155c32d5c6142914b41458234c100812bbec8", "originator_id": "23b155c32d5c6142914b41458234c100812bbec8", "inherited_field_id": "48fcbc397986aca5bb8722a95197dd0a46f19b4e"}, "metadata_element": {"id": "FERRERO.FIELD.AGENCY", "name": "Agency", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "string", "value": "Oliver"}, "is_locked": false, "domain_value": false, "cascading_domain_value": false}, "prompt": "Agency", "enabled": true, "domained": false, "editable": true, "required": false, "sortable": true, "data_type": "CHAR", "edit_type": "SIMPLE", "facetable": false, "searchable": true, "table_name": "FERRERO_AGENCY", "column_name": "AGENCY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}]}, {"container_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "container_name": "Z - Exchange", "container_type_id": "GLOBALMAINCATEG", "container_type_name": "L1 - MAIN CATEGORY", "inherited_metadata_values": [{"id": "MARKETING_CATEGORY", "tabular": false, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "07bd99a455858c9dfae61db4f70367f500ac4985"}, "metadata_element": {"id": "MARKETING_CATEGORY", "name": "Category", "type": "com.artesia.metadata.MetadataField", "scale": 0, "value": {"value": {"type": "com.artesia.metadata.DomainValue", "active_to": "", "active_from": "", "field_value": {"type": "string", "value": "YY"}, "display_value": "AGENCIES", "expired_value": false}, "is_locked": false, "domain_value": true, "cascading_domain_value": false}, "prompt": "Category", "enabled": true, "domained": true, "editable": true, "required": true, "sortable": true, "data_type": "CHAR", "domain_id": "CATEGORY", "edit_type": "COMBO", "facetable": true, "searchable": true, "table_name": "FERRERO_MARKETING_FOLDERS", "column_name": "CATEGORY", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "searchable_scope_id": "1", "searchable_scope_num_id": 1}}, {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "tabular": true, "value_id": {"uoi_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "originator_id": "e7e1e0fd3c41943ba01c0fc98969a780238b4ba1", "inherited_field_id": "27729b05864b17d11242c8b30a8a31bbf1105682"}, "metadata_element": {"id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTable", "legacy_id": 0, "metadata_element_list": [{"id": "FERRERO.FIELD.FINAL.APPROVER.BPS ", "name": "Final Approver BPS ", "type": "com.artesia.metadata.MetadataTableField", "scale": 0, "prompt": "Final Approver BPS ", "values": [], "enabled": true, "tabular": true, "domained": false, "editable": true, "required": false, "sortable": false, "data_type": "CHAR", "edit_type": "TEXTAREA", "facetable": false, "searchable": true, "table_name": "FERRERO_FINAL_APPROVER_BPS", "column_name": "FINAL_APPROVER_BPS", "data_length": 2000, "displayable": true, "multilingual": false, "system_field": false, "trigger_field": false, "meta_table_seq": 0, "restriction_id": 9713, "parent_table_id": "FERRERO.TABULAR.FIELD.FINAL_APPROVER_BPS", "parent_table_name": "Final Approver BPS ", "searchable_scope_id": "1", "searchable_scope_num_id": 1, "saved_values_behavior_mode": 0}]}}]}], "asset_lock_state_last_update_date": "2026-01-14T14:28:20.48+01:00", "content_lock_state_last_update_date": "2026-01-14T14:23:42.103+01:00"} \N \N active f \N \N 2026-01-16 20:54:56.82303 2026-01-16 20:54:56.82303 2026-01-16 20:54:56.82303 \. -- -- Data for Name: workflow_state; Type: TABLE DATA; Schema: public; Owner: ferrero_user -- COPY public.workflow_state (id, workflow_name, campaign_id, last_run_at, last_status, error_message, created_at, updated_at) FROM stdin; \. -- -- Name: asset_events_id_seq; Type: SEQUENCE SET; Schema: public; Owner: ferrero_user -- SELECT pg_catalog.setval('public.asset_events_id_seq', 21, true); -- -- Name: campaign_status_id_seq; Type: SEQUENCE SET; Schema: public; Owner: ferrero_user -- SELECT pg_catalog.setval('public.campaign_status_id_seq', 11, true); -- -- Name: creativex_scores_id_seq; Type: SEQUENCE SET; Schema: public; Owner: ferrero_user -- SELECT pg_catalog.setval('public.creativex_scores_id_seq', 11, true); -- -- Name: derivative_assets_id_seq; Type: SEQUENCE SET; Schema: public; Owner: ferrero_user -- SELECT pg_catalog.setval('public.derivative_assets_id_seq', 11, true); -- -- Name: master_assets_id_seq; Type: SEQUENCE SET; Schema: public; Owner: ferrero_user -- SELECT pg_catalog.setval('public.master_assets_id_seq', 21, true); -- -- Name: workflow_state_id_seq; Type: SEQUENCE SET; Schema: public; Owner: ferrero_user -- SELECT pg_catalog.setval('public.workflow_state_id_seq', 1, false); -- -- Name: asset_events asset_events_pkey; Type: CONSTRAINT; Schema: public; Owner: ferrero_user -- ALTER TABLE ONLY public.asset_events ADD CONSTRAINT asset_events_pkey PRIMARY KEY (id); -- -- Name: campaign_status campaign_status_campaign_id_key; Type: CONSTRAINT; Schema: public; Owner: ferrero_user -- ALTER TABLE ONLY public.campaign_status ADD CONSTRAINT campaign_status_campaign_id_key UNIQUE (campaign_id); -- -- Name: campaign_status campaign_status_pkey; Type: CONSTRAINT; Schema: public; Owner: ferrero_user -- ALTER TABLE ONLY public.campaign_status ADD CONSTRAINT campaign_status_pkey PRIMARY KEY (id); -- -- Name: creativex_scores creativex_scores_pkey; Type: CONSTRAINT; Schema: public; Owner: ferrero_user -- ALTER TABLE ONLY public.creativex_scores ADD CONSTRAINT creativex_scores_pkey PRIMARY KEY (id); -- -- Name: derivative_assets derivative_assets_pkey; Type: CONSTRAINT; Schema: public; Owner: ferrero_user -- ALTER TABLE ONLY public.derivative_assets ADD CONSTRAINT derivative_assets_pkey PRIMARY KEY (id); -- -- Name: master_assets master_assets_pkey; Type: CONSTRAINT; Schema: public; Owner: ferrero_user -- ALTER TABLE ONLY public.master_assets ADD CONSTRAINT master_assets_pkey PRIMARY KEY (id); -- -- Name: master_assets master_assets_tracking_id_key; Type: CONSTRAINT; Schema: public; Owner: ferrero_user -- ALTER TABLE ONLY public.master_assets ADD CONSTRAINT master_assets_tracking_id_key UNIQUE (tracking_id); -- -- Name: workflow_state workflow_state_pkey; Type: CONSTRAINT; Schema: public; Owner: ferrero_user -- ALTER TABLE ONLY public.workflow_state ADD CONSTRAINT workflow_state_pkey PRIMARY KEY (id); -- -- Name: idx_campaign_status_campaign_id; Type: INDEX; Schema: public; Owner: ferrero_user -- CREATE INDEX idx_campaign_status_campaign_id ON public.campaign_status USING btree (campaign_id); -- -- Name: idx_campaign_status_live; Type: INDEX; Schema: public; Owner: ferrero_user -- CREATE INDEX idx_campaign_status_live ON public.campaign_status USING btree (live_campaign); -- -- Name: idx_campaign_status_number; Type: INDEX; Schema: public; Owner: ferrero_user -- CREATE INDEX idx_campaign_status_number ON public.campaign_status USING btree (campaign_number); -- -- Name: idx_campaign_status_status; Type: INDEX; Schema: public; Owner: ferrero_user -- CREATE INDEX idx_campaign_status_status ON public.campaign_status USING btree (status); -- -- Name: idx_campaign_status_webhook_sent; Type: INDEX; Schema: public; Owner: ferrero_user -- CREATE INDEX idx_campaign_status_webhook_sent ON public.campaign_status USING btree (webhook_sent); -- -- Name: idx_creativex_box_file; Type: INDEX; Schema: public; Owner: ferrero_user -- CREATE INDEX idx_creativex_box_file ON public.creativex_scores USING btree (box_file_id); -- -- Name: idx_creativex_filename; Type: INDEX; Schema: public; Owner: ferrero_user -- CREATE INDEX idx_creativex_filename ON public.creativex_scores USING btree (filename); -- -- Name: idx_creativex_status; Type: INDEX; Schema: public; Owner: ferrero_user -- CREATE INDEX idx_creativex_status ON public.creativex_scores USING btree (status); -- -- Name: idx_creativex_tracking_id; Type: INDEX; Schema: public; Owner: ferrero_user -- CREATE INDEX idx_creativex_tracking_id ON public.creativex_scores USING btree (tracking_id); -- -- Name: idx_derivative_created_at; Type: INDEX; Schema: public; Owner: ferrero_user -- CREATE INDEX idx_derivative_created_at ON public.derivative_assets USING btree (created_at); -- -- Name: idx_derivative_status; Type: INDEX; Schema: public; Owner: ferrero_user -- CREATE INDEX idx_derivative_status ON public.derivative_assets USING btree (upload_status); -- -- Name: idx_derivative_tracking_id; Type: INDEX; Schema: public; Owner: ferrero_user -- CREATE INDEX idx_derivative_tracking_id ON public.derivative_assets USING btree (tracking_id); -- -- Name: idx_events_timestamp; Type: INDEX; Schema: public; Owner: ferrero_user -- CREATE INDEX idx_events_timestamp ON public.asset_events USING btree (event_timestamp); -- -- Name: idx_events_tracking_id; Type: INDEX; Schema: public; Owner: ferrero_user -- CREATE INDEX idx_events_tracking_id ON public.asset_events USING btree (tracking_id); -- -- Name: idx_events_type; Type: INDEX; Schema: public; Owner: ferrero_user -- CREATE INDEX idx_events_type ON public.asset_events USING btree (event_type); -- -- Name: idx_master_assets_brand_code; Type: INDEX; Schema: public; Owner: ferrero_user -- CREATE INDEX idx_master_assets_brand_code ON public.master_assets USING btree (brand_code); -- -- Name: idx_master_assets_created_at; Type: INDEX; Schema: public; Owner: ferrero_user -- CREATE INDEX idx_master_assets_created_at ON public.master_assets USING btree (created_at); -- -- Name: idx_master_assets_global_master; Type: INDEX; Schema: public; Owner: ferrero_user -- CREATE INDEX idx_master_assets_global_master ON public.master_assets USING btree (global_master_campaign_id); -- -- Name: idx_master_assets_local_campaign; Type: INDEX; Schema: public; Owner: ferrero_user -- CREATE INDEX idx_master_assets_local_campaign ON public.master_assets USING btree (local_campaign_id); -- -- Name: idx_master_assets_opentext_id; Type: INDEX; Schema: public; Owner: ferrero_user -- CREATE INDEX idx_master_assets_opentext_id ON public.master_assets USING btree (opentext_id); -- -- Name: idx_master_assets_opentext_local; Type: INDEX; Schema: public; Owner: ferrero_user -- CREATE INDEX idx_master_assets_opentext_local ON public.master_assets USING btree (opentext_id, local_campaign_id); -- -- Name: idx_master_assets_status; Type: INDEX; Schema: public; Owner: ferrero_user -- CREATE INDEX idx_master_assets_status ON public.master_assets USING btree (status); -- -- Name: idx_master_assets_tracking_id; Type: INDEX; Schema: public; Owner: ferrero_user -- CREATE INDEX idx_master_assets_tracking_id ON public.master_assets USING btree (tracking_id); -- -- Name: idx_workflow_campaign; Type: INDEX; Schema: public; Owner: ferrero_user -- CREATE INDEX idx_workflow_campaign ON public.workflow_state USING btree (campaign_id); -- -- Name: idx_workflow_name; Type: INDEX; Schema: public; Owner: ferrero_user -- CREATE INDEX idx_workflow_name ON public.workflow_state USING btree (workflow_name); -- -- Name: master_assets log_master_asset_changes; Type: TRIGGER; Schema: public; Owner: ferrero_user -- CREATE TRIGGER log_master_asset_changes AFTER INSERT OR DELETE OR UPDATE ON public.master_assets FOR EACH ROW EXECUTE FUNCTION public.log_master_asset_event(); -- -- Name: campaign_status update_campaign_status_updated_at; Type: TRIGGER; Schema: public; Owner: ferrero_user -- CREATE TRIGGER update_campaign_status_updated_at BEFORE UPDATE ON public.campaign_status FOR EACH ROW EXECUTE FUNCTION public.update_updated_at_column(); -- -- Name: derivative_assets update_derivative_assets_updated_at; Type: TRIGGER; Schema: public; Owner: ferrero_user -- CREATE TRIGGER update_derivative_assets_updated_at BEFORE UPDATE ON public.derivative_assets FOR EACH ROW EXECUTE FUNCTION public.update_updated_at_column(); -- -- Name: master_assets update_master_assets_updated_at; Type: TRIGGER; Schema: public; Owner: ferrero_user -- CREATE TRIGGER update_master_assets_updated_at BEFORE UPDATE ON public.master_assets FOR EACH ROW EXECUTE FUNCTION public.update_updated_at_column(); -- -- Name: workflow_state update_workflow_state_updated_at; Type: TRIGGER; Schema: public; Owner: ferrero_user -- CREATE TRIGGER update_workflow_state_updated_at BEFORE UPDATE ON public.workflow_state FOR EACH ROW EXECUTE FUNCTION public.update_updated_at_column(); -- -- Name: derivative_assets derivative_assets_master_asset_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: ferrero_user -- ALTER TABLE ONLY public.derivative_assets ADD CONSTRAINT derivative_assets_master_asset_id_fkey FOREIGN KEY (master_asset_id) REFERENCES public.master_assets(id) ON DELETE CASCADE; -- -- Name: derivative_assets derivative_assets_tracking_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: ferrero_user -- ALTER TABLE ONLY public.derivative_assets ADD CONSTRAINT derivative_assets_tracking_id_fkey FOREIGN KEY (tracking_id) REFERENCES public.master_assets(tracking_id); -- -- Name: SCHEMA public; Type: ACL; Schema: -; Owner: pg_database_owner -- GRANT USAGE ON SCHEMA public TO ferrero_user; -- -- PostgreSQL database dump complete -- \unrestrict UdqJnGUzvOPK1BKtyyhwJcdSsUoZoNOfOjKzsaZYWDZRZd2A0KZXksgF2fJd0mN